diff --git a/postgresql/ddl/W2025-29.sql b/postgresql/ddl/W2025-29.sql index 8b8c8edd62..69efeeaa56 100644 --- a/postgresql/ddl/W2025-29.sql +++ b/postgresql/ddl/W2025-29.sql @@ -72,7 +72,7 @@ CREATE TABLE IF NOT EXISTS mail_templates ( -- modules/invenio-mail/invenio_mail/alembic/b1495e98969b_create_mailtemplateusers.py PERFORM 1 FROM pg_type t JOIN pg_namespace n ON n.oid = t.typnamespace WHERE n.nspname = current_schema() AND t.typname = 'mailtype'; IF NOT FOUND THEN - CREATE TYPE mailtype AS ENUM ('recipient', 'cc', 'bcc'); + CREATE TYPE mailtype AS ENUM ('RECIPIENT', 'CC', 'BCC'); RAISE NOTICE 'CREATE TYPE mailtype: created successfully'; ELSE RAISE NOTICE 'CREATE TYPE mailtype: already exists, skipping'; diff --git a/scripts/demo/resticted_access.sql b/scripts/demo/resticted_access.sql index 745f96b671..e8eb5b5d67 100644 --- a/scripts/demo/resticted_access.sql +++ b/scripts/demo/resticted_access.sql @@ -16,10 +16,10 @@ BEGIN; -- INSERT INTO item_type_name (created, updated, id, name, has_site_license, is_active) VALUES -('2021-03-20 06:37:13.052787', '2021-03-20 06:37:13.052812', 31001, '利用申請', true, true), -('2021-03-20 06:39:00.459722', '2021-03-20 06:39:00.459741', 31002, '二段階利用申請', true, true), -('2021-03-20 06:42:51.677528', '2021-03-20 06:42:51.677548', 31003, '利用報告-Data Usage Report', true, true), -('2023-12-22 02:53:51.907000', '2023-12-22 02:54:55.171000', 31004, '制限公開用アイテムタイプ', true, true) +('2021-03-20 06:37:13.052787', '2021-03-20 06:37:13.052812', 31001, '利用申請', false, true), +('2021-03-20 06:39:00.459722', '2021-03-20 06:39:00.459741', 31002, '二段階利用申請', false, true), +('2021-03-20 06:42:51.677528', '2021-03-20 06:42:51.677548', 31003, '利用報告-Data Usage Report', false, true), +('2023-12-22 02:53:51.907000', '2023-12-22 02:54:55.171000', 31004, '制限公開用アイテムタイプ', false, true) ON CONFLICT (id) DO NOTHING; -- diff --git a/tools/disable_restricted_access.sh b/tools/disable_restricted_access.sh index 486fff307a..999dd10775 100644 --- a/tools/disable_restricted_access.sh +++ b/tools/disable_restricted_access.sh @@ -1,3 +1,7 @@ +set -euo pipefail +IFS=$'\n\t' +trap 'rc=$?; echo "Error: ${BASH_COMMAND} (line $LINENO) exited with ${rc}" >&2; exit ${rc}' ERR + SETTING_FILE=scripts/instance.cfg RESTRICTED_ACCESS_PROPERTY=30015 @@ -69,10 +73,14 @@ else fi docker cp scripts/demo/disable_restricted_access.sql $(docker compose ps -q postgresql):/tmp/disable_restricted_access.sql -docker-compose exec postgresql psql -U invenio -d invenio -f /tmp/disable_restricted_access.sql +docker-compose exec postgresql psql -U invenio -d invenio -v ON_ERROR_STOP=1 -f /tmp/disable_restricted_access.sql docker-compose exec web invenio shell tools/update_restricted_access_property.py $RESTRICTED_ACCESS_PROPERTY disable -docker-compose exec web bash -c "jinja2 /code/scripts/instance.cfg > /home/invenio/.virtualenvs/invenio/var/instance/invenio.cfg" -docker-compose down -docker-compose up -d +# verify the update +tools/verify_restricted_update.sh $SETTING_FILE False +docker compose exec web invenio shell tools/verify_restricted_records.py disable + +# docker-compose exec web bash -c "jinja2 /code/scripts/instance.cfg > /home/invenio/.virtualenvs/invenio/var/instance/invenio.cfg" +# docker-compose down +# docker-compose up -d diff --git a/tools/restricted_upadate.sh b/tools/restricted_upadate.sh old mode 100644 new mode 100755 index 3c357aa85f..9913859ae6 --- a/tools/restricted_upadate.sh +++ b/tools/restricted_upadate.sh @@ -1,3 +1,7 @@ +set -euo pipefail +IFS=$'\n\t' +trap 'rc=$?; echo "Error: ${BASH_COMMAND} (line $LINENO) exited with ${rc}" >&2; exit ${rc}' ERR + SETTING_FILE=scripts/instance.cfg RESTRICTED_ACCESS_PROPERTY=30015 @@ -69,10 +73,14 @@ else fi docker cp scripts/demo/resticted_access.sql $(docker compose ps -q postgresql):/tmp/resticted_access.sql -docker-compose exec postgresql psql -U invenio -d invenio -f /tmp/resticted_access.sql +docker-compose exec postgresql psql -U invenio -d invenio -v ON_ERROR_STOP=1 -f /tmp/resticted_access.sql docker-compose exec web invenio shell tools/update_restricted_access_property.py $RESTRICTED_ACCESS_PROPERTY enable -docker-compose exec web bash -c "jinja2 /code/scripts/instance.cfg > /home/invenio/.virtualenvs/invenio/var/instance/invenio.cfg" -docker-compose down -docker-compose up -d +# verify the update +tools/verify_restricted_update.sh $SETTING_FILE True +docker compose exec web invenio shell tools/verify_restricted_records.py enable + +# docker-compose exec web bash -c "jinja2 /code/scripts/instance.cfg > /home/invenio/.virtualenvs/invenio/var/instance/invenio.cfg" +# docker-compose down +# docker-compose up -d diff --git a/tools/switch_restricted_access/disable/get_target_table_hash.sql b/tools/switch_restricted_access/disable/get_target_table_hash.sql new file mode 100644 index 0000000000..4ad8115ad2 --- /dev/null +++ b/tools/switch_restricted_access/disable/get_target_table_hash.sql @@ -0,0 +1,69 @@ +SELECT * +FROM ( + SELECT 'item_type' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type + ) t + UNION ALL + SELECT 'item_type_property' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type_property + ) t + UNION ALL + SELECT 'workflow_workflow' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_workflow + ) t + UNION ALL + SELECT 'workflow_userrole' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_userrole + ) t + UNION ALL + SELECT 'admin_settings' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM admin_settings + ) t + UNION ALL + SELECT 'item_type_edit_history' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type_edit_history + ) t + UNION ALL + SELECT 'jsonld_mappings' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM jsonld_mappings + ) t + UNION ALL + SELECT 'rocrate_mapping' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM rocrate_mapping + ) t + UNION ALL + SELECT 'workflow_activity' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_activity + ) t + UNION ALL + SELECT 'sword_clients' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM sword_clients + ) t + UNION ALL + SELECT 'workflow_activity_action' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_activity_action + ) t +) s +ORDER BY table_name; diff --git a/tools/switch_restricted_access/disable/verify_table.json b/tools/switch_restricted_access/disable/verify_table.json new file mode 100644 index 0000000000..79261172ca --- /dev/null +++ b/tools/switch_restricted_access/disable/verify_table.json @@ -0,0 +1,41 @@ +{ + "item_type": [ + { + "id": 31004, + "name_id": 31004, + "harvesting_type": false, + "schema": "{\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\", \"item_1617186331708\", \"item_1617258105262\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1698591601\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"original_language\", \"format\": \"object\", \"properties\": {\"original_language\": {\"type\": \"string\", \"title\": \"Original Language\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"原文の言語\"}}}}, \"title\": \"原文の言語\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591602\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"volume_title\", \"format\": \"object\", \"properties\": {\"volume_title\": {\"type\": \"string\", \"title\": \"部編名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}}, \"volume_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"部編名\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591603\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"catalog\", \"format\": \"object\", \"properties\": {\"catalog_file\": {\"type\": \"object\", \"title\": \"File\", \"format\": \"object\", \"properties\": {\"catalog_file_uri\": {\"type\": \"string\", \"title\": \"File URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}}, \"catalog_file_object_type\": {\"enum\": [null, \"thumbnail\"], \"type\": \"string\", \"title\": \"Object Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}}}}, \"catalog_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_right\": {\"type\": \"string\", \"title\": \"Rights\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}}, \"catalog_right_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_right_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"Rights\", \"format\": \"array\"}, \"catalog_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_title\": {\"type\": \"string\", \"title\": \"Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"catalog_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"format\": \"array\"}, \"catalog_licenses\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_license\": {\"type\": \"string\", \"title\": \"License\", \"format\": \"text\", \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, \"catalog_license_type\": {\"enum\": [null, \"file\", \"metadata\", \"thumbnail\"], \"type\": [\"null\", \"string\"], \"title\": \"License Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}}, \"catalog_license_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_license_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"License\", \"format\": \"array\"}, \"catalog_subjects\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_subject\": {\"type\": \"string\", \"title\": \"Subject\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"catalog_subject_uri\": {\"type\": \"string\", \"title\": \"Subject URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"catalog_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Subject Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}}, \"catalog_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"format\": \"array\"}, \"catalog_identifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_identifier\": {\"type\": \"string\", \"title\": \"Identifier\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}}, \"catalog_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"Identifier Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}}}}, \"title\": \"Identifier\", \"format\": \"array\"}, \"catalog_contributors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_type\": {\"enum\": [null, \"HostingInstitution\"], \"type\": [\"null\", \"string\"], \"title\": \"Contributor Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}}, \"contributor_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_name\": {\"type\": \"string\", \"title\": \"Contributor Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}}, \"contributor_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Contributor Name\", \"format\": \"array\"}}}, \"title\": \"Contributor\", \"format\": \"array\"}, \"catalog_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_description\": {\"type\": \"string\", \"title\": \"Description\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}}, \"catalog_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Description Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}}, \"catalog_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}}}}, \"title\": \"Descriptions\", \"format\": \"array\"}, \"catalog_access_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"アクセス権\", \"properties\": {\"catalog_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"catalog_access_right_rdf_resource\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"title\": \"Access Rights\", \"format\": \"array\"}}}, \"title\": \"カタログ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591604\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"jpcoar_format\", \"format\": \"object\", \"properties\": {\"jpcoar_format\": {\"type\": \"string\", \"title\": \"物理的形態\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}}, \"jpcoar_format_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"物理的形態\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591605\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"データセットシリーズ\", \"format\": \"object\", \"properties\": {\"jpcoar_dataset_series\": {\"enum\": [null, \"True\", \"False\"], \"type\": [\"null\", \"string\"], \"title\": \"Dataset Series\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}}}}, \"title\": \"データセットシリーズ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591606\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"edition\", \"format\": \"object\", \"properties\": {\"edition\": {\"type\": \"string\", \"title\": \"版\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}}, \"edition_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"版\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"holding_agent_name\", \"format\": \"object\", \"properties\": {\"holding_agent_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"holding_agent_name\": {\"type\": \"string\", \"title\": \"所蔵機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}}, \"holding_agent_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所蔵機関名\", \"format\": \"array\"}, \"holding_agent_name_identifier\": {\"type\": \"object\", \"title\": \"所蔵機関識別子\", \"format\": \"object\", \"properties\": {\"holding_agent_name_identifier_uri\": {\"type\": \"string\", \"title\": \"所蔵機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}}, \"holding_agent_name_identifier_value\": {\"type\": \"string\", \"title\": \"所蔵機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}}, \"holding_agent_name_identifier_scheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"], \"type\": \"string\", \"title\": \"所蔵機関識別子スキーマ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"currentEnum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"]}}}}}, \"title\": \"所蔵機関\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591608\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_date\", \"format\": \"object\", \"properties\": {\"subitem_dcterms_date\": {\"type\": \"string\", \"title\": \"日付(リテラル)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}}, \"subitem_dcterms_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}, \"system_prop\": false}, \"title\": \"日付(リテラル)\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591609\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_extent\", \"format\": \"object\", \"properties\": {\"dcterms_extent\": {\"type\": \"string\", \"title\": \"Extent\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}}, \"dcterms_extent_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"大きさ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591610\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"publisher_information\", \"format\": \"object\", \"properties\": {\"publisher_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_name\": {\"type\": \"string\", \"title\": \"出版者名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}}, \"publisher_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者名\", \"format\": \"array\"}, \"publication_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publication_place\": {\"type\": \"string\", \"title\": \"出版地(国名コード)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}}}}, \"title\": \"出版地(国名コード)\", \"format\": \"array\"}, \"publisher_locations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_location\": {\"type\": \"string\", \"title\": \"出版地\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}}}}, \"title\": \"出版地\", \"format\": \"array\"}, \"publisher_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_description\": {\"type\": \"string\", \"title\": \"出版者注記\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}}, \"publisher_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者注記\", \"format\": \"array\"}}}, \"title\": \"出版者情報\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186331708\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"required\": [\"subitem_title\", \"subitem_title_language\"], \"properties\": {\"subitem_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"subitem_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186385884\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_alternative_title\": {\"type\": \"string\", \"title\": \"その他のタイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}}, \"subitem_alternative_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Alternative Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186419668\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"iscreator\": {\"type\": \"string\", \"title\": \"iscreator\", \"format\": \"text\"}, \"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者名\", \"format\": \"array\"}, \"creatorType\": {\"type\": \"string\", \"title\": \"作成者タイプ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者姓\", \"format\": \"array\"}, \"creatorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"作成者メールアドレス\", \"format\": \"array\"}, \"creatorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}, \"creatorNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"creatorNameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"currentEnum\": [\"Personal\", \"Organizational\"]}}}, \"title\": \"作成者姓名\", \"format\": \"array\"}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"作成者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"作成者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"作成者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"IdentifierScheme\", \"ja\": \"作成者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"作成者識別子\", \"format\": \"array\"}, \"creatorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"affiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"affiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}}, \"affiliationNameIdentifierURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"affiliationNameIdentifierScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"作成者所属\", \"format\": \"array\"}, \"creatorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"creatorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Creator\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186476635\": {\"type\": \"object\", \"title\": \"Access Rights\", \"format\": \"object\", \"properties\": {\"subitem_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"subitem_access_right_uri\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"item_1617186499011\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_rights\": {\"type\": \"string\", \"title\": \"権利情報\", \"format\": \"text\"}, \"subitem_rights_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_rights_resource\": {\"type\": \"string\", \"title\": \"権利情報Resource\", \"format\": \"text\"}}}, \"title\": \"Rights\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186609386\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_subject\": {\"type\": \"string\", \"title\": \"主題\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"subitem_subject_uri\": {\"type\": \"string\", \"title\": \"主題URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"subitem_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"主題Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"currentEnum\": [\"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"]}, \"subitem_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186626617\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_description\": {\"type\": \"string\", \"title\": \"内容記述\", \"format\": \"textarea\"}, \"subitem_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"内容記述タイプ\", \"format\": \"select\", \"currentEnum\": [\"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"]}, \"subitem_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Description\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186643794\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_publisher\": {\"type\": \"string\", \"title\": \"出版者\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}}, \"subitem_publisher_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Publisher\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186660861\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_date_issued_type\": {\"enum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"subitem_date_issued_datetime\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}}}, \"title\": \"Date\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186702042\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_language\": {\"enum\": [null, \"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"]}}}, \"title\": \"Language\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186783814\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_identifier_uri\": {\"type\": \"string\", \"title\": \"識別子\", \"format\": \"text\"}, \"subitem_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186819068\": {\"type\": \"object\", \"title\": \"Identifier Registration\", \"format\": \"object\", \"properties\": {\"subitem_identifier_reg_text\": {\"type\": \"string\", \"title\": \"ID登録\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}}, \"subitem_identifier_reg_type\": {\"enum\": [null, \"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"], \"type\": [\"null\", \"string\"], \"title\": \"ID登録タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"currentEnum\": [\"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"]}}}, \"item_1617186859717\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_temporal_text\": {\"type\": \"string\", \"title\": \"時間的範囲\", \"format\": \"text\"}, \"subitem_temporal_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Temporal\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186882738\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_box\": {\"type\": \"object\", \"title\": \"位置情報(空間)\", \"format\": \"object\", \"properties\": {\"subitem_east_longitude\": {\"type\": \"string\", \"title\": \"東部経度\", \"format\": \"text\"}, \"subitem_north_latitude\": {\"type\": \"string\", \"title\": \"北部緯度\", \"format\": \"text\"}, \"subitem_south_latitude\": {\"type\": \"string\", \"title\": \"南部緯度\", \"format\": \"text\"}, \"subitem_west_longitude\": {\"type\": \"string\", \"title\": \"西部経度\", \"format\": \"text\"}}}, \"subitem_geolocation_place\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_place_text\": {\"type\": \"string\", \"title\": \"位置情報(自由記述)\", \"format\": \"text\"}}}, \"title\": \"位置情報(自由記述)\", \"format\": \"array\"}, \"subitem_geolocation_point\": {\"type\": \"object\", \"title\": \"位置情報(点)\", \"format\": \"object\", \"properties\": {\"subitem_point_latitude\": {\"type\": \"string\", \"title\": \"緯度\", \"format\": \"text\"}, \"subitem_point_longitude\": {\"type\": \"string\", \"title\": \"経度\", \"format\": \"text\"}}}}}, \"title\": \"Geo Location\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186901218\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_title\": {\"type\": \"string\", \"title\": \"研究課題名\", \"format\": \"text\"}, \"subitem_award_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"研究課題名\", \"format\": \"array\"}, \"subitem_funder_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funder_name\": {\"type\": \"string\", \"title\": \"助成機関名\", \"format\": \"text\"}, \"subitem_funder_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"助成機関名\", \"format\": \"array\"}, \"subitem_award_numbers\": {\"type\": \"object\", \"title\": \"研究課題番号\", \"format\": \"object\", \"properties\": {\"subitem_award_uri\": {\"type\": \"string\", \"title\": \"研究課題番号URI\", \"format\": \"text\"}, \"subitem_award_number\": {\"type\": \"string\", \"title\": \"研究課題番号\", \"format\": \"text\"}, \"subitem_award_number_type\": {\"enum\": [null, \"JGN\"], \"type\": [\"null\", \"string\"], \"title\": \"研究課題番号タイプ\", \"format\": \"select\"}}}, \"subitem_funding_streams\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream\": {\"type\": \"string\", \"title\": \"プログラム情報\", \"format\": \"text\"}, \"subitem_funding_stream_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"プログラム情報\", \"format\": \"array\"}, \"subitem_funder_identifiers\": {\"type\": \"object\", \"title\": \"助成機関識別子\", \"format\": \"object\", \"properties\": {\"subitem_funder_identifier\": {\"type\": \"string\", \"title\": \"助成機関識別子\", \"format\": \"text\"}, \"subitem_funder_identifier_type\": {\"enum\": [null, \"Crossref Funder\", \"e-Rad_funder\", \"GRID\", \"ISNI\", \"ROR\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"助成機関識別子タイプ\", \"format\": \"select\"}, \"subitem_funder_identifier_type_uri\": {\"type\": \"string\", \"title\": \"助成機関識別子タイプURI\", \"format\": \"text\"}}}, \"subitem_funding_stream_identifiers\": {\"type\": \"object\", \"title\": \"プログラム情報識別子\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream_identifier\": {\"type\": \"string\", \"title\": \"プログラム情報識別子\", \"format\": \"text\"}, \"subitem_funding_stream_identifier_type\": {\"enum\": [\"Crossref Funder\", \"JGN_fundingStream\"], \"type\": [\"null\", \"string\"], \"title\": \"プログラム情報識別子タイプ\", \"format\": \"select\"}, \"subitem_funding_stream_identifier_type_uri\": {\"type\": \"string\", \"title\": \"プログラム情報識別子タイプURI\", \"format\": \"text\"}}}}}, \"title\": \"Funding Reference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186920753\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_identifier\": {\"type\": \"string\", \"title\": \"収録物識別子\", \"format\": \"text\"}, \"subitem_source_identifier_type\": {\"enum\": [null, \"PISSN\", \"EISSN\", \"ISSN\", \"NCID\"], \"type\": [\"null\", \"string\"], \"title\": \"収録物識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Source Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186941041\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_title\": {\"type\": \"string\", \"title\": \"収録物名\", \"format\": \"text\"}, \"subitem_source_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Source Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186959569\": {\"type\": \"object\", \"title\": \"Volume Number\", \"format\": \"object\", \"properties\": {\"subitem_volume\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}}}}, \"item_1617186981471\": {\"type\": \"object\", \"title\": \"Issue Number\", \"format\": \"object\", \"properties\": {\"subitem_issue\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}}}}, \"item_1617186994930\": {\"type\": \"object\", \"title\": \"Number of Pages\", \"format\": \"object\", \"properties\": {\"subitem_number_of_pages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}}}}, \"item_1617187024783\": {\"type\": \"object\", \"title\": \"Page Start\", \"format\": \"object\", \"properties\": {\"subitem_start_page\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}}}}, \"item_1617187045071\": {\"type\": \"object\", \"title\": \"Page End\", \"format\": \"object\", \"properties\": {\"subitem_end_page\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}}}}, \"item_1617187056579\": {\"type\": \"object\", \"title\": \"Bibliographic Information\", \"format\": \"object\", \"properties\": {\"bibliographicPageEnd\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\"}, \"bibliographic_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"bibliographic_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\"}, \"bibliographic_titleLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"雑誌名\", \"format\": \"array\"}, \"bibliographicPageStart\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\"}, \"bibliographicIssueDates\": {\"type\": \"object\", \"title\": \"発行日\", \"format\": \"object\", \"properties\": {\"bibliographicIssueDate\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}, \"bibliographicIssueDateType\": {\"enum\": [null, \"\", \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"\", \"Issued\"]}}}, \"bibliographicIssueNumber\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\"}, \"bibliographicVolumeNumber\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\"}, \"bibliographicNumberOfPages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1617187087799\": {\"type\": \"object\", \"title\": \"Dissertation Number\", \"format\": \"object\", \"properties\": {\"subitem_dissertationnumber\": {\"type\": \"string\", \"title\": \"学位授与番号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}}}}, \"item_1617187112279\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"学位名\", \"format\": \"object\", \"properties\": {\"subitem_degreename\": {\"type\": \"string\", \"title\": \"学位名\", \"format\": \"text\"}, \"subitem_degreename_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Degree Name\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617187136212\": {\"type\": \"object\", \"title\": \"Date Granted\", \"format\": \"object\", \"properties\": {\"subitem_dategranted\": {\"type\": \"string\", \"title\": \"学位授与年月日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}}}}, \"item_1617187187528\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_date\": {\"type\": \"object\", \"title\": \"開催期間\", \"format\": \"object\", \"properties\": {\"subitem_conference_period\": {\"type\": \"string\", \"title\": \"開催期間\", \"format\": \"text\"}, \"subitem_conference_end_day\": {\"type\": \"string\", \"title\": \"終了日\", \"format\": \"text\"}, \"subitem_conference_end_year\": {\"type\": \"string\", \"title\": \"終了年\", \"format\": \"text\"}, \"subitem_conference_end_month\": {\"type\": \"string\", \"title\": \"終了月\", \"format\": \"text\"}, \"subitem_conference_start_day\": {\"type\": \"string\", \"title\": \"開始日\", \"format\": \"text\"}, \"subitem_conference_start_year\": {\"type\": \"string\", \"title\": \"開始年\", \"format\": \"text\"}, \"subitem_conference_start_month\": {\"type\": \"string\", \"title\": \"開始月\", \"format\": \"text\"}, \"subitem_conference_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"subitem_conference_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_name\": {\"type\": \"string\", \"title\": \"会議名\", \"format\": \"text\"}, \"subitem_conference_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"会議名\", \"format\": \"array\"}, \"subitem_conference_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_place\": {\"type\": \"string\", \"title\": \"開催地\", \"format\": \"text\"}, \"subitem_conference_place_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催地\", \"format\": \"array\"}, \"subitem_conference_venues\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_venue\": {\"type\": \"string\", \"title\": \"開催会場\", \"format\": \"text\"}, \"subitem_conference_venue_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催会場\", \"format\": \"array\"}, \"subitem_conference_country\": {\"enum\": [null, \"JPN\", \"ABW\", \"AFG\", \"AGO\", \"AIA\", \"ALA\", \"ALB\", \"AND\", \"ARE\", \"ARG\", \"ARM\", \"ASM\", \"ATA\", \"ATF\", \"ATG\", \"AUS\", \"AUT\", \"AZE\", \"BDI\", \"BEL\", \"BEN\", \"BES\", \"BFA\", \"BGD\", \"BGR\", \"BHR\", \"BHS\", \"BIH\", \"BLM\", \"BLR\", \"BLZ\", \"BMU\", \"BOL\", \"BRA\", \"BRB\", \"BRN\", \"BTN\", \"BVT\", \"BWA\", \"CAF\", \"CAN\", \"CCK\", \"CHE\", \"CHL\", \"CHN\", \"CIV\", \"CMR\", \"COD\", \"COG\", \"COK\", \"COL\", \"COM\", \"CPV\", \"CRI\", \"CUB\", \"CUW\", \"CXR\", \"CYM\", \"CYP\", \"CZE\", \"DEU\", \"DJI\", \"DMA\", \"DNK\", \"DOM\", \"DZA\", \"ECU\", \"EGY\", \"ERI\", \"ESH\", \"ESP\", \"EST\", \"ETH\", \"FIN\", \"FJI\", \"FLK\", \"FRA\", \"FRO\", \"FSM\", \"GAB\", \"GBR\", \"GEO\", \"GGY\", \"GHA\", \"GIB\", \"GIN\", \"GLP\", \"GMB\", \"GNB\", \"GNQ\", \"GRC\", \"GRD\", \"GRL\", \"GTM\", \"GUF\", \"GUM\", \"GUY\", \"HKG\", \"HMD\", \"HND\", \"HRV\", \"HTI\", \"HUN\", \"IDN\", \"IMN\", \"IND\", \"IOT\", \"IRL\", \"IRN\", \"IRQ\", \"ISL\", \"ISR\", \"ITA\", \"JAM\", \"JEY\", \"JOR\", \"KAZ\", \"KEN\", \"KGZ\", \"KHM\", \"KIR\", \"KNA\", \"KOR\", \"KWT\", \"LAO\", \"LBN\", \"LBR\", \"LBY\", \"LCA\", \"LIE\", \"LKA\", \"LSO\", \"LTU\", \"LUX\", \"LVA\", \"MAC\", \"MAF\", \"MAR\", \"MCO\", \"MDA\", \"MDG\", \"MDV\", \"MEX\", \"MHL\", \"MKD\", \"MLI\", \"MLT\", \"MMR\", \"MNE\", \"MNG\", \"MNP\", \"MOZ\", \"MRT\", \"MSR\", \"MTQ\", \"MUS\", \"MWI\", \"MYS\", \"MYT\", \"NAM\", \"NCL\", \"NER\", \"NFK\", \"NGA\", \"NIC\", \"NIU\", \"NLD\", \"NOR\", \"NPL\", \"NRU\", \"NZL\", \"OMN\", \"PAK\", \"PAN\", \"PCN\", \"PER\", \"PHL\", \"PLW\", \"PNG\", \"POL\", \"PRI\", \"PRK\", \"PRT\", \"PRY\", \"PSE\", \"PYF\", \"QAT\", \"REU\", \"ROU\", \"RUS\", \"RWA\", \"SAU\", \"SDN\", \"SEN\", \"SGP\", \"SGS\", \"SHN\", \"SJM\", \"SLB\", \"SLE\", \"SLV\", \"SMR\", \"SOM\", \"SPM\", \"SRB\", \"SSD\", \"STP\", \"SUR\", \"SVK\", \"SVN\", \"SWE\", \"SWZ\", \"SXM\", \"SYC\", \"SYR\", \"TCA\", \"TCD\", \"TGO\", \"THA\", \"TJK\", \"TKL\", \"TKM\", \"TLS\", \"TON\", \"TTO\", \"TUN\", \"TUR\", \"TUV\", \"TWN\", \"TZA\", \"UGA\", \"UKR\", \"UMI\", \"URY\", \"USA\", \"UZB\", \"VAT\", \"VCT\", \"VEN\", \"VGB\", \"VIR\", \"VNM\", \"VUT\", \"WLF\", \"WSM\", \"YEM\", \"ZAF\", \"ZMB\", \"ZWE\"], \"type\": [\"null\", \"string\"], \"title\": \"開催国\", \"format\": \"select\"}, \"subitem_conference_sequence\": {\"type\": \"string\", \"title\": \"回次\", \"format\": \"text\"}, \"subitem_conference_sponsors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_sponsor\": {\"type\": \"string\", \"title\": \"主催機関\", \"format\": \"text\"}, \"subitem_conference_sponsor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"主催機関\", \"format\": \"array\"}}}, \"title\": \"Conference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617258105262\": {\"type\": \"object\", \"title\": \"Resource Type\", \"format\": \"object\", \"required\": [\"resourceuri\", \"resourcetype\"], \"properties\": {\"resourceuri\": {\"type\": \"string\", \"title\": \"資源タイプ識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}}, \"resourcetype\": {\"enum\": [null, \"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"資源タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"currentEnum\": [\"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"]}}, \"system_prop\": true}, \"item_1617265215918\": {\"type\": \"object\", \"title\": \"Version Type\", \"format\": \"object\", \"properties\": {\"subitem_version_type\": {\"enum\": [null, \"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"], \"type\": [\"null\", \"string\"], \"title\": \"出版タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"currentEnum\": [\"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"]}, \"subitem_peer_reviewed\": {\"enum\": [null, \"Peer reviewed\", \"Not peer reviewed\"], \"type\": [\"null\", \"string\"], \"title\": \"査読の有無\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"currentEnum\": [\"Peer reviewed\", \"Not peer reviewed\"]}, \"subitem_version_resource\": {\"type\": \"string\", \"title\": \"出版タイプResource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}}}, \"system_prop\": true}, \"item_1617349709064\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者名\", \"format\": \"array\"}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者姓\", \"format\": \"array\"}, \"contributorType\": {\"enum\": [null, \"ContactPerson\", \"DataCollector\", \"DataCurator\", \"DataManager\", \"Distributor\", \"Editor\", \"HostingInstitution\", \"Producer\", \"ProjectLeader\", \"ProjectManager\", \"ProjectMember\", \"RelatedPerson\", \"Researcher\", \"ResearchGroup\", \"Sponsor\", \"Supervisor\", \"WorkPackageLeader\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"寄与者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"寄与者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"寄与者識別子\", \"format\": \"array\"}, \"contributorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"寄与者メールアドレス\", \"format\": \"array\"}, \"contributorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"lang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"nameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"editAble\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}}, \"contributorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}}}, \"title\": \"寄与者姓名\", \"format\": \"array\"}, \"contributorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"contributorAffiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"contributorAffiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"contributorAffiliationScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"currentEnum\": [\"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"]}, \"contributorAffiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"寄与者所属\", \"format\": \"array\"}, \"contributorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"contributorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Contributor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617349808926\": {\"type\": \"object\", \"title\": \"Version\", \"format\": \"object\", \"properties\": {\"subitem_version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}}}}, \"item_1617351524846\": {\"type\": \"object\", \"title\": \"APC\", \"format\": \"object\", \"properties\": {\"subitem_apc\": {\"enum\": [null, \"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"], \"type\": [\"null\", \"string\"], \"title\": \"APC\", \"format\": \"select\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"currentEnum\": [\"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"]}}}, \"item_1617353299429\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name_text\": {\"type\": \"string\", \"title\": \"関連名称\", \"format\": \"text\"}, \"subitem_relation_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"関連名称\", \"format\": \"array\"}, \"subitem_relation_type\": {\"enum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"], \"type\": [\"null\", \"string\"], \"title\": \"関連タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"]}, \"subitem_relation_type_id\": {\"type\": \"object\", \"title\": \"関連識別子\", \"format\": \"object\", \"properties\": {\"subitem_relation_type_select\": {\"enum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"]}, \"subitem_relation_type_id_text\": {\"type\": \"string\", \"title\": \"関連識別子\", \"format\": \"text\"}}}}}, \"title\": \"Relation\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617610673286\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"権利者識別子\", \"format\": \"text\"}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"権利者識別子URI\", \"format\": \"text\"}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"権利者識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"権利者識別子\", \"format\": \"array\"}, \"rightHolderNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"rightHolderName\": {\"type\": \"string\", \"title\": \"権利者名\", \"format\": \"text\"}, \"rightHolderLanguage\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"権利者名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Rights Holder\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617620223087\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_heading_headline\": {\"type\": \"string\", \"title\": \"小見出し\", \"format\": \"text\"}, \"subitem_heading_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_heading_banner_headline\": {\"type\": \"string\", \"title\": \"大見出し\", \"format\": \"text\"}}, \"system_prop\": true}, \"title\": \"Heading\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617944105607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_name\": {\"type\": \"string\", \"title\": \"学位授与機関名\", \"format\": \"text\"}, \"subitem_degreegrantor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"学位授与機関名\", \"format\": \"array\"}, \"subitem_degreegrantor_identifier\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_identifier_name\": {\"type\": \"string\", \"title\": \"学位授与機関識別子\", \"format\": \"text\"}, \"subitem_degreegrantor_identifier_scheme\": {\"enum\": [null, \"kakenhi\"], \"type\": [\"null\", \"string\"], \"title\": \"学位授与機関識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"学位授与機関識別子\", \"format\": \"array\"}}}, \"title\": \"Degree Grantor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1718082005802\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\", \"currentEnum\": []}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\", \"currentEnum\": []}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_no\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"Restricted File\", \"maxItems\": 9999, \"minItems\": 1}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}}, \"description\": \"\"}", + "form": "[{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"item_1617186331708\", \"items\": [{\"key\": \"item_1617186331708[].subitem_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186331708[].subitem_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186385884\", \"items\": [{\"key\": \"item_1617186385884[].subitem_alternative_title\", \"type\": \"text\", \"title\": \"その他のタイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186385884[].subitem_alternative_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Alternative Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668\", \"items\": [{\"key\": \"item_1617186419668[].creatorType\", \"type\": \"text\", \"title\": \"作成者タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"作成者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"e-Rad\", \"value\": \"e-Rad\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"WEKO\", \"value\": \"WEKO\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier Scheme\", \"ja\": \"作成者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"作成者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorNames[].creatorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name\", \"ja\": \"作成者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].familyNames\", \"items\": [{\"key\": \"item_1617186419668[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Family Name\", \"ja\": \"作成者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].givenNames\", \"items\": [{\"key\": \"item_1617186419668[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Given Name\", \"ja\": \"作成者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAlternatives\", \"items\": [{\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Alternative Name\", \"ja\": \"作成者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"作成者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorMails\", \"items\": [{\"key\": \"item_1617186419668[].creatorMails[].creatorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Email Address\", \"ja\": \"作成者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617186419668'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Creator\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator\", \"ja\": \"作成者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064\", \"items\": [{\"key\": \"item_1617349709064[].contributorType\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ContactPerson\", \"value\": \"ContactPerson\"}, {\"name\": \"DataCollector\", \"value\": \"DataCollector\"}, {\"name\": \"DataCurator\", \"value\": \"DataCurator\"}, {\"name\": \"DataManager\", \"value\": \"DataManager\"}, {\"name\": \"Distributor\", \"value\": \"Distributor\"}, {\"name\": \"Editor\", \"value\": \"Editor\"}, {\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}, {\"name\": \"Producer\", \"value\": \"Producer\"}, {\"name\": \"ProjectLeader\", \"value\": \"ProjectLeader\"}, {\"name\": \"ProjectManager\", \"value\": \"ProjectManager\"}, {\"name\": \"ProjectMember\", \"value\": \"ProjectMember\"}, {\"name\": \"RelatedPerson\", \"value\": \"RelatedPerson\"}, {\"name\": \"Researcher\", \"value\": \"Researcher\"}, {\"name\": \"ResearchGroup\", \"value\": \"ResearchGroup\"}, {\"name\": \"Sponsor\", \"value\": \"Sponsor\"}, {\"name\": \"Supervisor\", \"value\": \"Supervisor\"}, {\"name\": \"WorkPackageLeader\", \"value\": \"WorkPackageLeader\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"寄与者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"寄与者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorNames[].contributorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].lang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].nameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"寄与者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].familyNames\", \"items\": [{\"key\": \"item_1617349709064[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Family Name\", \"ja\": \"寄与者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].givenNames\", \"items\": [{\"key\": \"item_1617349709064[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Given Name\", \"ja\": \"寄与者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAlternatives\", \"items\": [{\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Alternative Name\", \"ja\": \"寄与者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"寄与者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorMails\", \"items\": [{\"key\": \"item_1617349709064[].contributorMails[].contributorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Email Address\", \"ja\": \"寄与者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617349709064[]'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"寄与者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186476635.subitem_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635.subitem_access_right_uri\", \"type\": \"text\", \"title\": \"アクセス権URI\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617351524846\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617351524846.subitem_apc\", \"type\": \"select\", \"title\": \"APC\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Paid\", \"value\": \"Paid\"}, {\"name\": \"Partially waived\", \"value\": \"Partially waived\"}, {\"name\": \"Fully waived\", \"value\": \"Fully waived\"}, {\"name\": \"Not charged\", \"value\": \"Not charged\"}, {\"name\": \"Not required\", \"value\": \"Not required\"}, {\"name\": \"Unknown\", \"value\": \"Unknown\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"APC\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186499011\", \"items\": [{\"key\": \"item_1617186499011[].subitem_rights_resource\", \"type\": \"text\", \"title\": \"権利情報Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights Resource\", \"ja\": \"権利情報Resource\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights\", \"type\": \"text\", \"title\": \"権利情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617610673286[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"権利者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier Scheme\", \"ja\": \"権利者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"権利者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier URI\", \"ja\": \"権利者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286[].rightHolderNames\", \"items\": [{\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderName\", \"type\": \"text\", \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderLanguage\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights Holder\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder\", \"ja\": \"権利者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186609386\", \"items\": [{\"key\": \"item_1617186609386[].subitem_subject_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_scheme\", \"type\": \"select\", \"title\": \"主題Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject\", \"type\": \"text\", \"title\": \"主題\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_uri\", \"type\": \"text\", \"title\": \"主題URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186626617\", \"items\": [{\"key\": \"item_1617186626617[].subitem_description_type\", \"type\": \"select\", \"title\": \"内容記述タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description\", \"type\": \"textarea\", \"title\": \"内容記述\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186643794\", \"items\": [{\"key\": \"item_1617186643794[].subitem_publisher\", \"type\": \"text\", \"title\": \"出版者\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186643794[].subitem_publisher_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186660861\", \"items\": [{\"key\": \"item_1617186660861[].subitem_date_issued_datetime\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186660861[].subitem_date_issued_type\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Date\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186702042\", \"items\": [{\"key\": \"item_1617186702042[].subitem_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"jpn\", \"value\": \"jpn\"}, {\"name\": \"eng\", \"value\": \"eng\"}, {\"name\": \"aar\", \"value\": \"aar\"}, {\"name\": \"abk\", \"value\": \"abk\"}, {\"name\": \"afr\", \"value\": \"afr\"}, {\"name\": \"aka\", \"value\": \"aka\"}, {\"name\": \"amh\", \"value\": \"amh\"}, {\"name\": \"ara\", \"value\": \"ara\"}, {\"name\": \"arg\", \"value\": \"arg\"}, {\"name\": \"asm\", \"value\": \"asm\"}, {\"name\": \"ava\", \"value\": \"ava\"}, {\"name\": \"ave\", \"value\": \"ave\"}, {\"name\": \"aym\", \"value\": \"aym\"}, {\"name\": \"aze\", \"value\": \"aze\"}, {\"name\": \"bak\", \"value\": \"bak\"}, {\"name\": \"bam\", \"value\": \"bam\"}, {\"name\": \"bel\", \"value\": \"bel\"}, {\"name\": \"ben\", \"value\": \"ben\"}, {\"name\": \"bis\", \"value\": \"bis\"}, {\"name\": \"bod\", \"value\": \"bod\"}, {\"name\": \"bos\", \"value\": \"bos\"}, {\"name\": \"bre\", \"value\": \"bre\"}, {\"name\": \"bul\", \"value\": \"bul\"}, {\"name\": \"cat\", \"value\": \"cat\"}, {\"name\": \"ces\", \"value\": \"ces\"}, {\"name\": \"cha\", \"value\": \"cha\"}, {\"name\": \"che\", \"value\": \"che\"}, {\"name\": \"chu\", \"value\": \"chu\"}, {\"name\": \"chv\", \"value\": \"chv\"}, {\"name\": \"cor\", \"value\": \"cor\"}, {\"name\": \"cos\", \"value\": \"cos\"}, {\"name\": \"cre\", \"value\": \"cre\"}, {\"name\": \"cym\", \"value\": \"cym\"}, {\"name\": \"dan\", \"value\": \"dan\"}, {\"name\": \"deu\", \"value\": \"deu\"}, {\"name\": \"div\", \"value\": \"div\"}, {\"name\": \"dzo\", \"value\": \"dzo\"}, {\"name\": \"ell\", \"value\": \"ell\"}, {\"name\": \"epo\", \"value\": \"epo\"}, {\"name\": \"est\", \"value\": \"est\"}, {\"name\": \"eus\", \"value\": \"eus\"}, {\"name\": \"ewe\", \"value\": \"ewe\"}, {\"name\": \"fao\", \"value\": \"fao\"}, {\"name\": \"fas\", \"value\": \"fas\"}, {\"name\": \"fij\", \"value\": \"fij\"}, {\"name\": \"fin\", \"value\": \"fin\"}, {\"name\": \"fra\", \"value\": \"fra\"}, {\"name\": \"fry\", \"value\": \"fry\"}, {\"name\": \"ful\", \"value\": \"ful\"}, {\"name\": \"gla\", \"value\": \"gla\"}, {\"name\": \"gle\", \"value\": \"gle\"}, {\"name\": \"glg\", \"value\": \"glg\"}, {\"name\": \"glv\", \"value\": \"glv\"}, {\"name\": \"grn\", \"value\": \"grn\"}, {\"name\": \"guj\", \"value\": \"guj\"}, {\"name\": \"hat\", \"value\": \"hat\"}, {\"name\": \"hau\", \"value\": \"hau\"}, {\"name\": \"heb\", \"value\": \"heb\"}, {\"name\": \"her\", \"value\": \"her\"}, {\"name\": \"hin\", \"value\": \"hin\"}, {\"name\": \"hmo\", \"value\": \"hmo\"}, {\"name\": \"hrv\", \"value\": \"hrv\"}, {\"name\": \"hun\", \"value\": \"hun\"}, {\"name\": \"hye\", \"value\": \"hye\"}, {\"name\": \"ibo\", \"value\": \"ibo\"}, {\"name\": \"ido\", \"value\": \"ido\"}, {\"name\": \"iii\", \"value\": \"iii\"}, {\"name\": \"iku\", \"value\": \"iku\"}, {\"name\": \"ile\", \"value\": \"ile\"}, {\"name\": \"ina\", \"value\": \"ina\"}, {\"name\": \"ind\", \"value\": \"ind\"}, {\"name\": \"ipk\", \"value\": \"ipk\"}, {\"name\": \"isl\", \"value\": \"isl\"}, {\"name\": \"ita\", \"value\": \"ita\"}, {\"name\": \"jav\", \"value\": \"jav\"}, {\"name\": \"kal\", \"value\": \"kal\"}, {\"name\": \"kan\", \"value\": \"kan\"}, {\"name\": \"kas\", \"value\": \"kas\"}, {\"name\": \"kat\", \"value\": \"kat\"}, {\"name\": \"kau\", \"value\": \"kau\"}, {\"name\": \"kaz\", \"value\": \"kaz\"}, {\"name\": \"khm\", \"value\": \"khm\"}, {\"name\": \"kik\", \"value\": \"kik\"}, {\"name\": \"kin\", \"value\": \"kin\"}, {\"name\": \"kir\", \"value\": \"kir\"}, {\"name\": \"kom\", \"value\": \"kom\"}, {\"name\": \"kon\", \"value\": \"kon\"}, {\"name\": \"kor\", \"value\": \"kor\"}, {\"name\": \"kua\", \"value\": \"kua\"}, {\"name\": \"kur\", \"value\": \"kur\"}, {\"name\": \"lao\", \"value\": \"lao\"}, {\"name\": \"lat\", \"value\": \"lat\"}, {\"name\": \"lav\", \"value\": \"lav\"}, {\"name\": \"lim\", \"value\": \"lim\"}, {\"name\": \"lin\", \"value\": \"lin\"}, {\"name\": \"lit\", \"value\": \"lit\"}, {\"name\": \"ltz\", \"value\": \"ltz\"}, {\"name\": \"lub\", \"value\": \"lub\"}, {\"name\": \"lug\", \"value\": \"lug\"}, {\"name\": \"mah\", \"value\": \"mah\"}, {\"name\": \"mal\", \"value\": \"mal\"}, {\"name\": \"mar\", \"value\": \"mar\"}, {\"name\": \"mkd\", \"value\": \"mkd\"}, {\"name\": \"mlg\", \"value\": \"mlg\"}, {\"name\": \"mlt\", \"value\": \"mlt\"}, {\"name\": \"mon\", \"value\": \"mon\"}, {\"name\": \"mri\", \"value\": \"mri\"}, {\"name\": \"msa\", \"value\": \"msa\"}, {\"name\": \"mya\", \"value\": \"mya\"}, {\"name\": \"nau\", \"value\": \"nau\"}, {\"name\": \"nav\", \"value\": \"nav\"}, {\"name\": \"nbl\", \"value\": \"nbl\"}, {\"name\": \"nde\", \"value\": \"nde\"}, {\"name\": \"ndo\", \"value\": \"ndo\"}, {\"name\": \"nep\", \"value\": \"nep\"}, {\"name\": \"nld\", \"value\": \"nld\"}, {\"name\": \"nno\", \"value\": \"nno\"}, {\"name\": \"nob\", \"value\": \"nob\"}, {\"name\": \"nor\", \"value\": \"nor\"}, {\"name\": \"nya\", \"value\": \"nya\"}, {\"name\": \"oci\", \"value\": \"oci\"}, {\"name\": \"oji\", \"value\": \"oji\"}, {\"name\": \"ori\", \"value\": \"ori\"}, {\"name\": \"orm\", \"value\": \"orm\"}, {\"name\": \"oss\", \"value\": \"oss\"}, {\"name\": \"pan\", \"value\": \"pan\"}, {\"name\": \"pli\", \"value\": \"pli\"}, {\"name\": \"pol\", \"value\": \"pol\"}, {\"name\": \"por\", \"value\": \"por\"}, {\"name\": \"pus\", \"value\": \"pus\"}, {\"name\": \"que\", \"value\": \"que\"}, {\"name\": \"roh\", \"value\": \"roh\"}, {\"name\": \"ron\", \"value\": \"ron\"}, {\"name\": \"run\", \"value\": \"run\"}, {\"name\": \"rus\", \"value\": \"rus\"}, {\"name\": \"sag\", \"value\": \"sag\"}, {\"name\": \"san\", \"value\": \"san\"}, {\"name\": \"sin\", \"value\": \"sin\"}, {\"name\": \"slk\", \"value\": \"slk\"}, {\"name\": \"slv\", \"value\": \"slv\"}, {\"name\": \"sme\", \"value\": \"sme\"}, {\"name\": \"smo\", \"value\": \"smo\"}, {\"name\": \"sna\", \"value\": \"sna\"}, {\"name\": \"snd\", \"value\": \"snd\"}, {\"name\": \"som\", \"value\": \"som\"}, {\"name\": \"sot\", \"value\": \"sot\"}, {\"name\": \"spa\", \"value\": \"spa\"}, {\"name\": \"sqi\", \"value\": \"sqi\"}, {\"name\": \"srd\", \"value\": \"srd\"}, {\"name\": \"srp\", \"value\": \"srp\"}, {\"name\": \"ssw\", \"value\": \"ssw\"}, {\"name\": \"sun\", \"value\": \"sun\"}, {\"name\": \"swa\", \"value\": \"swa\"}, {\"name\": \"swe\", \"value\": \"swe\"}, {\"name\": \"tah\", \"value\": \"tah\"}, {\"name\": \"tam\", \"value\": \"tam\"}, {\"name\": \"tat\", \"value\": \"tat\"}, {\"name\": \"tel\", \"value\": \"tel\"}, {\"name\": \"tgk\", \"value\": \"tgk\"}, {\"name\": \"tgl\", \"value\": \"tgl\"}, {\"name\": \"tha\", \"value\": \"tha\"}, {\"name\": \"tir\", \"value\": \"tir\"}, {\"name\": \"ton\", \"value\": \"ton\"}, {\"name\": \"tsn\", \"value\": \"tsn\"}, {\"name\": \"tso\", \"value\": \"tso\"}, {\"name\": \"tuk\", \"value\": \"tuk\"}, {\"name\": \"tur\", \"value\": \"tur\"}, {\"name\": \"twi\", \"value\": \"twi\"}, {\"name\": \"uig\", \"value\": \"uig\"}, {\"name\": \"ukr\", \"value\": \"ukr\"}, {\"name\": \"urd\", \"value\": \"urd\"}, {\"name\": \"uzb\", \"value\": \"uzb\"}, {\"name\": \"ven\", \"value\": \"ven\"}, {\"name\": \"vie\", \"value\": \"vie\"}, {\"name\": \"vol\", \"value\": \"vol\"}, {\"name\": \"wln\", \"value\": \"wln\"}, {\"name\": \"wol\", \"value\": \"wol\"}, {\"name\": \"xho\", \"value\": \"xho\"}, {\"name\": \"yid\", \"value\": \"yid\"}, {\"name\": \"yor\", \"value\": \"yor\"}, {\"name\": \"zha\", \"value\": \"zha\"}, {\"name\": \"zho\", \"value\": \"zho\"}, {\"name\": \"zul\", \"value\": \"zul\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Language\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617258105262.resourceuri\", \"type\": \"text\", \"title\": \"資源タイプ識別子\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262.resourcetype\", \"type\": \"select\", \"title\": \"資源タイプ \", \"isHide\": false, \"onChange\": \"resourceTypeSelect()\", \"required\": false, \"titleMap\": [{\"name\": \"conference paper\", \"value\": \"conference paper\"}, {\"name\": \"data paper\", \"value\": \"data paper\"}, {\"name\": \"departmental bulletin paper\", \"value\": \"departmental bulletin paper\"}, {\"name\": \"editorial\", \"value\": \"editorial\"}, {\"name\": \"journal\", \"value\": \"journal\"}, {\"name\": \"journal article\", \"value\": \"journal article\"}, {\"name\": \"newspaper\", \"value\": \"newspaper\"}, {\"name\": \"review article\", \"value\": \"review article\"}, {\"name\": \"other periodical\", \"value\": \"other periodical\"}, {\"name\": \"software paper\", \"value\": \"software paper\"}, {\"name\": \"article\", \"value\": \"article\"}, {\"name\": \"book\", \"value\": \"book\"}, {\"name\": \"book part\", \"value\": \"book part\"}, {\"name\": \"cartographic material\", \"value\": \"cartographic material\"}, {\"name\": \"map\", \"value\": \"map\"}, {\"name\": \"conference output\", \"value\": \"conference output\"}, {\"name\": \"conference presentation\", \"value\": \"conference presentation\"}, {\"name\": \"conference proceedings\", \"value\": \"conference proceedings\"}, {\"name\": \"conference poster\", \"value\": \"conference poster\"}, {\"name\": \"aggregated data\", \"value\": \"aggregated data\"}, {\"name\": \"clinical trial data\", \"value\": \"clinical trial data\"}, {\"name\": \"compiled data\", \"value\": \"compiled data\"}, {\"name\": \"dataset\", \"value\": \"dataset\"}, {\"name\": \"encoded data\", \"value\": \"encoded data\"}, {\"name\": \"experimental data\", \"value\": \"experimental data\"}, {\"name\": \"genomic data\", \"value\": \"genomic data\"}, {\"name\": \"geospatial data\", \"value\": \"geospatial data\"}, {\"name\": \"laboratory notebook\", \"value\": \"laboratory notebook\"}, {\"name\": \"measurement and test data\", \"value\": \"measurement and test data\"}, {\"name\": \"observational data\", \"value\": \"observational data\"}, {\"name\": \"recorded data\", \"value\": \"recorded data\"}, {\"name\": \"simulation data\", \"value\": \"simulation data\"}, {\"name\": \"survey data\", \"value\": \"survey data\"}, {\"name\": \"image\", \"value\": \"image\"}, {\"name\": \"still image\", \"value\": \"still image\"}, {\"name\": \"moving image\", \"value\": \"moving image\"}, {\"name\": \"video\", \"value\": \"video\"}, {\"name\": \"lecture\", \"value\": \"lecture\"}, {\"name\": \"design patent\", \"value\": \"design patent\"}, {\"name\": \"patent\", \"value\": \"patent\"}, {\"name\": \"PCT application\", \"value\": \"PCT application\"}, {\"name\": \"plant patent\", \"value\": \"plant patent\"}, {\"name\": \"plant variety protection\", \"value\": \"plant variety protection\"}, {\"name\": \"software patent\", \"value\": \"software patent\"}, {\"name\": \"trademark\", \"value\": \"trademark\"}, {\"name\": \"utility model\", \"value\": \"utility model\"}, {\"name\": \"report\", \"value\": \"report\"}, {\"name\": \"research report\", \"value\": \"research report\"}, {\"name\": \"technical report\", \"value\": \"technical report\"}, {\"name\": \"policy report\", \"value\": \"policy report\"}, {\"name\": \"working paper\", \"value\": \"working paper\"}, {\"name\": \"data management plan\", \"value\": \"data management plan\"}, {\"name\": \"sound\", \"value\": \"sound\"}, {\"name\": \"thesis\", \"value\": \"thesis\"}, {\"name\": \"bachelor thesis\", \"value\": \"bachelor thesis\"}, {\"name\": \"master thesis\", \"value\": \"master thesis\"}, {\"name\": \"doctoral thesis\", \"value\": \"doctoral thesis\"}, {\"name\": \"commentary\", \"value\": \"commentary\"}, {\"name\": \"design\", \"value\": \"design\"}, {\"name\": \"industrial design\", \"value\": \"industrial design\"}, {\"name\": \"interactive resource\", \"value\": \"interactive resource\"}, {\"name\": \"layout design\", \"value\": \"layout design\"}, {\"name\": \"learning object\", \"value\": \"learning object\"}, {\"name\": \"manuscript\", \"value\": \"manuscript\"}, {\"name\": \"musical notation\", \"value\": \"musical notation\"}, {\"name\": \"peer review\", \"value\": \"peer review\"}, {\"name\": \"research proposal\", \"value\": \"research proposal\"}, {\"name\": \"research protocol\", \"value\": \"research protocol\"}, {\"name\": \"software\", \"value\": \"software\"}, {\"name\": \"source code\", \"value\": \"source code\"}, {\"name\": \"technical documentation\", \"value\": \"technical documentation\"}, {\"name\": \"transcription\", \"value\": \"transcription\"}, {\"name\": \"workflow\", \"value\": \"workflow\"}, {\"name\": \"other\", \"value\": \"other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Resource Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349808926\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617349808926.subitem_version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617265215918.subitem_version_type\", \"type\": \"select\", \"title\": \"出版タイプ\", \"isHide\": false, \"onChange\": \"changedVersionType(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"AO\", \"value\": \"AO\"}, {\"name\": \"SMUR\", \"value\": \"SMUR\"}, {\"name\": \"AM\", \"value\": \"AM\"}, {\"name\": \"P\", \"value\": \"P\"}, {\"name\": \"VoR\", \"value\": \"VoR\"}, {\"name\": \"CVoR\", \"value\": \"CVoR\"}, {\"name\": \"EVoR\", \"value\": \"EVoR\"}, {\"name\": \"NA\", \"value\": \"NA\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_version_resource\", \"type\": \"text\", \"title\": \"出版タイプResource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-version-resource\", \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_peer_reviewed\", \"type\": \"select\", \"title\": \"査読の有無\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Peer reviewed\", \"value\": \"Peer reviewed\", \"name_i18n\": {\"en\": \"Peer reviewed\", \"ja\": \"査読あり\"}}, {\"name\": \"Not peer reviewed\", \"value\": \"Not peer reviewed\", \"name_i18n\": {\"en\": \"Not peer reviewed\", \"ja\": \"査読なし\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186783814\", \"items\": [{\"key\": \"item_1617186783814[].subitem_identifier_uri\", \"type\": \"text\", \"title\": \"識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186783814[].subitem_identifier_type\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186819068.subitem_identifier_reg_text\", \"type\": \"text\", \"title\": \"ID登録\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068.subitem_identifier_reg_type\", \"type\": \"select\", \"title\": \"ID登録タイプ\", \"isHide\": false, \"readonly\": true, \"required\": false, \"titleMap\": [{\"name\": \"JaLC\", \"value\": \"JaLC\"}, {\"name\": \"Crossref\", \"value\": \"Crossref\"}, {\"name\": \"DataCite\", \"value\": \"DataCite\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Identifier Registration\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type\", \"type\": \"select\", \"title\": \"関連タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"isVersionOf\", \"value\": \"isVersionOf\"}, {\"name\": \"hasVersion\", \"value\": \"hasVersion\"}, {\"name\": \"isPartOf\", \"value\": \"isPartOf\"}, {\"name\": \"hasPart\", \"value\": \"hasPart\"}, {\"name\": \"isReferencedBy\", \"value\": \"isReferencedBy\"}, {\"name\": \"references\", \"value\": \"references\"}, {\"name\": \"isFormatOf\", \"value\": \"isFormatOf\"}, {\"name\": \"hasFormat\", \"value\": \"hasFormat\"}, {\"name\": \"isReplacedBy\", \"value\": \"isReplacedBy\"}, {\"name\": \"replaces\", \"value\": \"replaces\"}, {\"name\": \"isRequiredBy\", \"value\": \"isRequiredBy\"}, {\"name\": \"requires\", \"value\": \"requires\"}, {\"name\": \"isSupplementedBy\", \"value\": \"isSupplementedBy\"}, {\"name\": \"isSupplementTo\", \"value\": \"isSupplementTo\"}, {\"name\": \"isIdenticalTo\", \"value\": \"isIdenticalTo\"}, {\"name\": \"isDerivedFrom\", \"value\": \"isDerivedFrom\"}, {\"name\": \"isSourceOf\", \"value\": \"isSourceOf\"}, {\"name\": \"isCitedBy\", \"value\": \"isCitedBy\"}, {\"name\": \"Cites\", \"value\": \"Cites\"}, {\"name\": \"inSeries\", \"value\": \"inSeries\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation Type\", \"ja\": \"関連タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_select\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ARK\", \"value\": \"ARK\"}, {\"name\": \"arXiv\", \"value\": \"arXiv\"}, {\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"ICHUSHI\", \"value\": \"ICHUSHI\"}, {\"name\": \"ISBN\", \"value\": \"ISBN\"}, {\"name\": \"J-GLOBAL\", \"value\": \"J-GLOBAL\"}, {\"name\": \"Local\", \"value\": \"Local\"}, {\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN【非推奨】\", \"value\": \"ISSN\"}, {\"name\": \"NAID【非推奨】\", \"value\": \"NAID\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}, {\"name\": \"PURL\", \"value\": \"PURL\"}, {\"name\": \"SCOPUS\", \"value\": \"SCOPUS\"}, {\"name\": \"URI\", \"value\": \"URI\"}, {\"name\": \"WOS\", \"value\": \"WOS\"}, {\"name\": \"CRID\", \"value\": \"CRID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_id_text\", \"type\": \"text\", \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429[].subitem_relation_name\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_text\", \"type\": \"text\", \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Relation\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation\", \"ja\": \"関連情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186859717\", \"items\": [{\"key\": \"item_1617186859717[].subitem_temporal_text\", \"type\": \"text\", \"title\": \"時間的範囲\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186859717[].subitem_temporal_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Temporal\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_longitude\", \"type\": \"text\", \"title\": \"経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Longitude\", \"ja\": \"経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_latitude\", \"type\": \"text\", \"title\": \"緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Latitude\", \"ja\": \"緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(点)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Point\", \"ja\": \"位置情報(点)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_west_longitude\", \"type\": \"text\", \"title\": \"西部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"West Bound Longitude\", \"ja\": \"西部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_east_longitude\", \"type\": \"text\", \"title\": \"東部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"East Bound Longitude\", \"ja\": \"東部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_south_latitude\", \"type\": \"text\", \"title\": \"南部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"South Bound Latitude\", \"ja\": \"南部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_north_latitude\", \"type\": \"text\", \"title\": \"北部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"North Bound Latitude\", \"ja\": \"北部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(空間)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Box\", \"ja\": \"位置情報(空間)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738[].subitem_geolocation_place\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_place[].subitem_geolocation_place_text\", \"type\": \"text\", \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Geo Location\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location\", \"ja\": \"位置情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type\", \"type\": \"select\", \"title\": \"助成機関識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"e-Rad_funder\", \"value\": \"e-Rad_funder\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type\", \"ja\": \"助成機関識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier\", \"type\": \"text\", \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type_uri\", \"type\": \"text\", \"title\": \"助成機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type URI\", \"ja\": \"助成機関識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funder_names\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name\", \"type\": \"text\", \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type\", \"type\": \"select\", \"title\": \"プログラム情報識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"JGN_fundingStream\", \"value\": \"JGN_fundingStream\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type\", \"ja\": \"プログラム情報識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier\", \"type\": \"text\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type_uri\", \"type\": \"text\", \"title\": \"プログラム情報識別子タイプURI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type URI\", \"ja\": \"プログラム情報識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"プログラム情報識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifiers\", \"ja\": \"プログラム情報識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funding_streams\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_streams.subitem_funding_stream\", \"type\": \"text\", \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_streams[].subitem_funding_stream_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Streams\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number_type\", \"type\": \"select\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JGN\", \"value\": \"JGN\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number Type\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number\", \"type\": \"text\", \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_uri\", \"type\": \"text\", \"title\": \"研究課題番号URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number URI\", \"ja\": \"研究課題番号URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_award_titles\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title\", \"type\": \"text\", \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Funding Reference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder\", \"ja\": \"助成情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186920753\", \"items\": [{\"key\": \"item_1617186920753[].subitem_source_identifier_type\", \"type\": \"select\", \"title\": \"収録物識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN\", \"value\": \"ISSN\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier Type\", \"ja\": \"収録物識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186920753[].subitem_source_identifier\", \"type\": \"text\", \"title\": \"収録物識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186941041\", \"items\": [{\"key\": \"item_1617186941041[].subitem_source_title\", \"type\": \"text\", \"title\": \"収録物名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186941041[].subitem_source_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186959569\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186959569.subitem_volume\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Volume Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186981471\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186981471.subitem_issue\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Issue Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186994930\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186994930.subitem_number_of_pages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Number of Pages\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187024783\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187024783.subitem_start_page\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page Start\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187045071\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187045071.subitem_end_page\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page End\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187056579.bibliographic_titles\", \"items\": [{\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_titleLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"雑誌名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Journal Title\", \"ja\": \"雑誌名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicVolumeNumber\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Number\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueNumber\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Number\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageStart\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page Start\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageEnd\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page End\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicNumberOfPages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Page\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDate\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"\", \"value\": \"\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"発行日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Date\", \"ja\": \"発行日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Bibliographic Information\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Bibliographic Information\", \"ja\": \"書誌情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187087799\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187087799.subitem_dissertationnumber\", \"type\": \"text\", \"title\": \"学位授与番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Dissertation Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187112279\", \"items\": [{\"key\": \"item_1617187112279[].subitem_degreename\", \"type\": \"text\", \"title\": \"学位名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187112279[].subitem_degreename_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187136212\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187136212.subitem_dategranted\", \"type\": \"template\", \"title\": \"学位授与年月日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Date Granted\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor_identifier\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_scheme\", \"type\": \"select\", \"title\": \"学位授与機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier Scheme\", \"ja\": \"学位授与機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_name\", \"type\": \"text\", \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_name\", \"type\": \"text\", \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Grantor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor\", \"ja\": \"学位授与機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_names\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name\", \"type\": \"text\", \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sequence\", \"type\": \"text\", \"title\": \"回次\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sequence\", \"ja\": \"回次\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_sponsors\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor\", \"type\": \"text\", \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_year\", \"type\": \"text\", \"title\": \"開始年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Year\", \"ja\": \"開始年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_month\", \"type\": \"text\", \"title\": \"開始月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Month\", \"ja\": \"開始月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_day\", \"type\": \"text\", \"title\": \"開始日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Day\", \"ja\": \"開始日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_year\", \"type\": \"text\", \"title\": \"終了年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Year\", \"ja\": \"終了年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_month\", \"type\": \"text\", \"title\": \"終了月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Month\", \"ja\": \"終了月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_day\", \"type\": \"text\", \"title\": \"終了日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Day\", \"ja\": \"終了日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_period\", \"type\": \"text\", \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_venues\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue\", \"type\": \"text\", \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_places\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place\", \"type\": \"text\", \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_country\", \"type\": \"select\", \"title\": \"開催国\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JPN\", \"value\": \"JPN\"}, {\"name\": \"ABW\", \"value\": \"ABW\"}, {\"name\": \"AFG\", \"value\": \"AFG\"}, {\"name\": \"AGO\", \"value\": \"AGO\"}, {\"name\": \"AIA\", \"value\": \"AIA\"}, {\"name\": \"ALA\", \"value\": \"ALA\"}, {\"name\": \"ALB\", \"value\": \"ALB\"}, {\"name\": \"AND\", \"value\": \"AND\"}, {\"name\": \"ARE\", \"value\": \"ARE\"}, {\"name\": \"ARG\", \"value\": \"ARG\"}, {\"name\": \"ARM\", \"value\": \"ARM\"}, {\"name\": \"ASM\", \"value\": \"ASM\"}, {\"name\": \"ATA\", \"value\": \"ATA\"}, {\"name\": \"ATF\", \"value\": \"ATF\"}, {\"name\": \"ATG\", \"value\": \"ATG\"}, {\"name\": \"AUS\", \"value\": \"AUS\"}, {\"name\": \"AUT\", \"value\": \"AUT\"}, {\"name\": \"AZE\", \"value\": \"AZE\"}, {\"name\": \"BDI\", \"value\": \"BDI\"}, {\"name\": \"BEL\", \"value\": \"BEL\"}, {\"name\": \"BEN\", \"value\": \"BEN\"}, {\"name\": \"BES\", \"value\": \"BES\"}, {\"name\": \"BFA\", \"value\": \"BFA\"}, {\"name\": \"BGD\", \"value\": \"BGD\"}, {\"name\": \"BGR\", \"value\": \"BGR\"}, {\"name\": \"BHR\", \"value\": \"BHR\"}, {\"name\": \"BHS\", \"value\": \"BHS\"}, {\"name\": \"BIH\", \"value\": \"BIH\"}, {\"name\": \"BLM\", \"value\": \"BLM\"}, {\"name\": \"BLR\", \"value\": \"BLR\"}, {\"name\": \"BLZ\", \"value\": \"BLZ\"}, {\"name\": \"BMU\", \"value\": \"BMU\"}, {\"name\": \"BOL\", \"value\": \"BOL\"}, {\"name\": \"BRA\", \"value\": \"BRA\"}, {\"name\": \"BRB\", \"value\": \"BRB\"}, {\"name\": \"BRN\", \"value\": \"BRN\"}, {\"name\": \"BTN\", \"value\": \"BTN\"}, {\"name\": \"BVT\", \"value\": \"BVT\"}, {\"name\": \"BWA\", \"value\": \"BWA\"}, {\"name\": \"CAF\", \"value\": \"CAF\"}, {\"name\": \"CAN\", \"value\": \"CAN\"}, {\"name\": \"CCK\", \"value\": \"CCK\"}, {\"name\": \"CHE\", \"value\": \"CHE\"}, {\"name\": \"CHL\", \"value\": \"CHL\"}, {\"name\": \"CHN\", \"value\": \"CHN\"}, {\"name\": \"CIV\", \"value\": \"CIV\"}, {\"name\": \"CMR\", \"value\": \"CMR\"}, {\"name\": \"COD\", \"value\": \"COD\"}, {\"name\": \"COG\", \"value\": \"COG\"}, {\"name\": \"COK\", \"value\": \"COK\"}, {\"name\": \"COL\", \"value\": \"COL\"}, {\"name\": \"COM\", \"value\": \"COM\"}, {\"name\": \"CPV\", \"value\": \"CPV\"}, {\"name\": \"CRI\", \"value\": \"CRI\"}, {\"name\": \"CUB\", \"value\": \"CUB\"}, {\"name\": \"CUW\", \"value\": \"CUW\"}, {\"name\": \"CXR\", \"value\": \"CXR\"}, {\"name\": \"CYM\", \"value\": \"CYM\"}, {\"name\": \"CYP\", \"value\": \"CYP\"}, {\"name\": \"CZE\", \"value\": \"CZE\"}, {\"name\": \"DEU\", \"value\": \"DEU\"}, {\"name\": \"DJI\", \"value\": \"DJI\"}, {\"name\": \"DMA\", \"value\": \"DMA\"}, {\"name\": \"DNK\", \"value\": \"DNK\"}, {\"name\": \"DOM\", \"value\": \"DOM\"}, {\"name\": \"DZA\", \"value\": \"DZA\"}, {\"name\": \"ECU\", \"value\": \"ECU\"}, {\"name\": \"EGY\", \"value\": \"EGY\"}, {\"name\": \"ERI\", \"value\": \"ERI\"}, {\"name\": \"ESH\", \"value\": \"ESH\"}, {\"name\": \"ESP\", \"value\": \"ESP\"}, {\"name\": \"EST\", \"value\": \"EST\"}, {\"name\": \"ETH\", \"value\": \"ETH\"}, {\"name\": \"FIN\", \"value\": \"FIN\"}, {\"name\": \"FJI\", \"value\": \"FJI\"}, {\"name\": \"FLK\", \"value\": \"FLK\"}, {\"name\": \"FRA\", \"value\": \"FRA\"}, {\"name\": \"FRO\", \"value\": \"FRO\"}, {\"name\": \"FSM\", \"value\": \"FSM\"}, {\"name\": \"GAB\", \"value\": \"GAB\"}, {\"name\": \"GBR\", \"value\": \"GBR\"}, {\"name\": \"GEO\", \"value\": \"GEO\"}, {\"name\": \"GGY\", \"value\": \"GGY\"}, {\"name\": \"GHA\", \"value\": \"GHA\"}, {\"name\": \"GIB\", \"value\": \"GIB\"}, {\"name\": \"GIN\", \"value\": \"GIN\"}, {\"name\": \"GLP\", \"value\": \"GLP\"}, {\"name\": \"GMB\", \"value\": \"GMB\"}, {\"name\": \"GNB\", \"value\": \"GNB\"}, {\"name\": \"GNQ\", \"value\": \"GNQ\"}, {\"name\": \"GRC\", \"value\": \"GRC\"}, {\"name\": \"GRD\", \"value\": \"GRD\"}, {\"name\": \"GRL\", \"value\": \"GRL\"}, {\"name\": \"GTM\", \"value\": \"GTM\"}, {\"name\": \"GUF\", \"value\": \"GUF\"}, {\"name\": \"GUM\", \"value\": \"GUM\"}, {\"name\": \"GUY\", \"value\": \"GUY\"}, {\"name\": \"HKG\", \"value\": \"HKG\"}, {\"name\": \"HMD\", \"value\": \"HMD\"}, {\"name\": \"HND\", \"value\": \"HND\"}, {\"name\": \"HRV\", \"value\": \"HRV\"}, {\"name\": \"HTI\", \"value\": \"HTI\"}, {\"name\": \"HUN\", \"value\": \"HUN\"}, {\"name\": \"IDN\", \"value\": \"IDN\"}, {\"name\": \"IMN\", \"value\": \"IMN\"}, {\"name\": \"IND\", \"value\": \"IND\"}, {\"name\": \"IOT\", \"value\": \"IOT\"}, {\"name\": \"IRL\", \"value\": \"IRL\"}, {\"name\": \"IRN\", \"value\": \"IRN\"}, {\"name\": \"IRQ\", \"value\": \"IRQ\"}, {\"name\": \"ISL\", \"value\": \"ISL\"}, {\"name\": \"ISR\", \"value\": \"ISR\"}, {\"name\": \"ITA\", \"value\": \"ITA\"}, {\"name\": \"JAM\", \"value\": \"JAM\"}, {\"name\": \"JEY\", \"value\": \"JEY\"}, {\"name\": \"JOR\", \"value\": \"JOR\"}, {\"name\": \"KAZ\", \"value\": \"KAZ\"}, {\"name\": \"KEN\", \"value\": \"KEN\"}, {\"name\": \"KGZ\", \"value\": \"KGZ\"}, {\"name\": \"KHM\", \"value\": \"KHM\"}, {\"name\": \"KIR\", \"value\": \"KIR\"}, {\"name\": \"KNA\", \"value\": \"KNA\"}, {\"name\": \"KOR\", \"value\": \"KOR\"}, {\"name\": \"KWT\", \"value\": \"KWT\"}, {\"name\": \"LAO\", \"value\": \"LAO\"}, {\"name\": \"LBN\", \"value\": \"LBN\"}, {\"name\": \"LBR\", \"value\": \"LBR\"}, {\"name\": \"LBY\", \"value\": \"LBY\"}, {\"name\": \"LCA\", \"value\": \"LCA\"}, {\"name\": \"LIE\", \"value\": \"LIE\"}, {\"name\": \"LKA\", \"value\": \"LKA\"}, {\"name\": \"LSO\", \"value\": \"LSO\"}, {\"name\": \"LTU\", \"value\": \"LTU\"}, {\"name\": \"LUX\", \"value\": \"LUX\"}, {\"name\": \"LVA\", \"value\": \"LVA\"}, {\"name\": \"MAC\", \"value\": \"MAC\"}, {\"name\": \"MAF\", \"value\": \"MAF\"}, {\"name\": \"MAR\", \"value\": \"MAR\"}, {\"name\": \"MCO\", \"value\": \"MCO\"}, {\"name\": \"MDA\", \"value\": \"MDA\"}, {\"name\": \"MDG\", \"value\": \"MDG\"}, {\"name\": \"MDV\", \"value\": \"MDV\"}, {\"name\": \"MEX\", \"value\": \"MEX\"}, {\"name\": \"MHL\", \"value\": \"MHL\"}, {\"name\": \"MKD\", \"value\": \"MKD\"}, {\"name\": \"MLI\", \"value\": \"MLI\"}, {\"name\": \"MLT\", \"value\": \"MLT\"}, {\"name\": \"MMR\", \"value\": \"MMR\"}, {\"name\": \"MNE\", \"value\": \"MNE\"}, {\"name\": \"MNG\", \"value\": \"MNG\"}, {\"name\": \"MNP\", \"value\": \"MNP\"}, {\"name\": \"MOZ\", \"value\": \"MOZ\"}, {\"name\": \"MRT\", \"value\": \"MRT\"}, {\"name\": \"MSR\", \"value\": \"MSR\"}, {\"name\": \"MTQ\", \"value\": \"MTQ\"}, {\"name\": \"MUS\", \"value\": \"MUS\"}, {\"name\": \"MWI\", \"value\": \"MWI\"}, {\"name\": \"MYS\", \"value\": \"MYS\"}, {\"name\": \"MYT\", \"value\": \"MYT\"}, {\"name\": \"NAM\", \"value\": \"NAM\"}, {\"name\": \"NCL\", \"value\": \"NCL\"}, {\"name\": \"NER\", \"value\": \"NER\"}, {\"name\": \"NFK\", \"value\": \"NFK\"}, {\"name\": \"NGA\", \"value\": \"NGA\"}, {\"name\": \"NIC\", \"value\": \"NIC\"}, {\"name\": \"NIU\", \"value\": \"NIU\"}, {\"name\": \"NLD\", \"value\": \"NLD\"}, {\"name\": \"NOR\", \"value\": \"NOR\"}, {\"name\": \"NPL\", \"value\": \"NPL\"}, {\"name\": \"NRU\", \"value\": \"NRU\"}, {\"name\": \"NZL\", \"value\": \"NZL\"}, {\"name\": \"OMN\", \"value\": \"OMN\"}, {\"name\": \"PAK\", \"value\": \"PAK\"}, {\"name\": \"PAN\", \"value\": \"PAN\"}, {\"name\": \"PCN\", \"value\": \"PCN\"}, {\"name\": \"PER\", \"value\": \"PER\"}, {\"name\": \"PHL\", \"value\": \"PHL\"}, {\"name\": \"PLW\", \"value\": \"PLW\"}, {\"name\": \"PNG\", \"value\": \"PNG\"}, {\"name\": \"POL\", \"value\": \"POL\"}, {\"name\": \"PRI\", \"value\": \"PRI\"}, {\"name\": \"PRK\", \"value\": \"PRK\"}, {\"name\": \"PRT\", \"value\": \"PRT\"}, {\"name\": \"PRY\", \"value\": \"PRY\"}, {\"name\": \"PSE\", \"value\": \"PSE\"}, {\"name\": \"PYF\", \"value\": \"PYF\"}, {\"name\": \"QAT\", \"value\": \"QAT\"}, {\"name\": \"REU\", \"value\": \"REU\"}, {\"name\": \"ROU\", \"value\": \"ROU\"}, {\"name\": \"RUS\", \"value\": \"RUS\"}, {\"name\": \"RWA\", \"value\": \"RWA\"}, {\"name\": \"SAU\", \"value\": \"SAU\"}, {\"name\": \"SDN\", \"value\": \"SDN\"}, {\"name\": \"SEN\", \"value\": \"SEN\"}, {\"name\": \"SGP\", \"value\": \"SGP\"}, {\"name\": \"SGS\", \"value\": \"SGS\"}, {\"name\": \"SHN\", \"value\": \"SHN\"}, {\"name\": \"SJM\", \"value\": \"SJM\"}, {\"name\": \"SLB\", \"value\": \"SLB\"}, {\"name\": \"SLE\", \"value\": \"SLE\"}, {\"name\": \"SLV\", \"value\": \"SLV\"}, {\"name\": \"SMR\", \"value\": \"SMR\"}, {\"name\": \"SOM\", \"value\": \"SOM\"}, {\"name\": \"SPM\", \"value\": \"SPM\"}, {\"name\": \"SRB\", \"value\": \"SRB\"}, {\"name\": \"SSD\", \"value\": \"SSD\"}, {\"name\": \"STP\", \"value\": \"STP\"}, {\"name\": \"SUR\", \"value\": \"SUR\"}, {\"name\": \"SVK\", \"value\": \"SVK\"}, {\"name\": \"SVN\", \"value\": \"SVN\"}, {\"name\": \"SWE\", \"value\": \"SWE\"}, {\"name\": \"SWZ\", \"value\": \"SWZ\"}, {\"name\": \"SXM\", \"value\": \"SXM\"}, {\"name\": \"SYC\", \"value\": \"SYC\"}, {\"name\": \"SYR\", \"value\": \"SYR\"}, {\"name\": \"TCA\", \"value\": \"TCA\"}, {\"name\": \"TCD\", \"value\": \"TCD\"}, {\"name\": \"TGO\", \"value\": \"TGO\"}, {\"name\": \"THA\", \"value\": \"THA\"}, {\"name\": \"TJK\", \"value\": \"TJK\"}, {\"name\": \"TKL\", \"value\": \"TKL\"}, {\"name\": \"TKM\", \"value\": \"TKM\"}, {\"name\": \"TLS\", \"value\": \"TLS\"}, {\"name\": \"TON\", \"value\": \"TON\"}, {\"name\": \"TTO\", \"value\": \"TTO\"}, {\"name\": \"TUN\", \"value\": \"TUN\"}, {\"name\": \"TUR\", \"value\": \"TUR\"}, {\"name\": \"TUV\", \"value\": \"TUV\"}, {\"name\": \"TWN\", \"value\": \"TWN\"}, {\"name\": \"TZA\", \"value\": \"TZA\"}, {\"name\": \"UGA\", \"value\": \"UGA\"}, {\"name\": \"UKR\", \"value\": \"UKR\"}, {\"name\": \"UMI\", \"value\": \"UMI\"}, {\"name\": \"URY\", \"value\": \"URY\"}, {\"name\": \"USA\", \"value\": \"USA\"}, {\"name\": \"UZB\", \"value\": \"UZB\"}, {\"name\": \"VAT\", \"value\": \"VAT\"}, {\"name\": \"VCT\", \"value\": \"VCT\"}, {\"name\": \"VEN\", \"value\": \"VEN\"}, {\"name\": \"VGB\", \"value\": \"VGB\"}, {\"name\": \"VIR\", \"value\": \"VIR\"}, {\"name\": \"VNM\", \"value\": \"VNM\"}, {\"name\": \"VUT\", \"value\": \"VUT\"}, {\"name\": \"WLF\", \"value\": \"WLF\"}, {\"name\": \"WSM\", \"value\": \"WSM\"}, {\"name\": \"YEM\", \"value\": \"YEM\"}, {\"name\": \"ZAF\", \"value\": \"ZAF\"}, {\"name\": \"ZMB\", \"value\": \"ZMB\"}, {\"name\": \"ZWE\", \"value\": \"ZWE\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Country\", \"ja\": \"開催国\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Conference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference\", \"ja\": \"会議記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617620223087\", \"items\": [{\"key\": \"item_1617620223087[].subitem_heading_banner_headline\", \"type\": \"text\", \"title\": \"大見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"大見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_headline\", \"type\": \"text\", \"title\": \"小見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subheading\", \"ja\": \"小見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Heading\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591601\", \"items\": [{\"key\": \"item_1698591601[].original_language\", \"type\": \"text\", \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591602\", \"items\": [{\"key\": \"item_1698591602[].volume_title\", \"type\": \"text\", \"title\": \"Edition\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591602[].volume_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"部編名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_type\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors[].contributor_names\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name\", \"type\": \"text\", \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"提供機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_identifiers\", \"items\": [{\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier_type\", \"type\": \"select\", \"title\": \"Identifier Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier\", \"type\": \"text\", \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_titles\", \"items\": [{\"key\": \"item_1698591603[].catalog_titles[].catalog_title\", \"type\": \"text\", \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_titles[].catalog_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_descriptions\", \"items\": [{\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_type\", \"type\": \"select\", \"title\": \"Description Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description\", \"type\": \"textarea\", \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_subjects\", \"items\": [{\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject\", \"type\": \"text\", \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_scheme\", \"type\": \"select\", \"title\": \"Subject Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_uri\", \"type\": \"text\", \"title\": \"Subject URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_licenses\", \"items\": [{\"key\": \"item_1698591603[].catalog_licenses[].catalog_license\", \"type\": \"text\", \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_type\", \"type\": \"select\", \"title\": \"License Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"file\", \"value\": \"file\"}, {\"name\": \"metadata\", \"value\": \"metadata\"}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_rights[].catalog_right\", \"type\": \"text\", \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_access_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591603[].catalog_file.catalog_file_uri\", \"type\": \"text\", \"title\": \"File URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file.catalog_file_object_type\", \"type\": \"select\", \"title\": \"Object Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"カタログ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Catalog\", \"ja\": \"カタログ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591604\", \"items\": [{\"key\": \"item_1698591604[].jpcoar_format\", \"type\": \"text\", \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591604[].jpcoar_format_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591605\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591605[].jpcoar_dataset_series\", \"type\": \"select\", \"title\": \"Dataset Series\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"True\", \"value\": \"True\"}, {\"name\": \"False\", \"value\": \"False\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"データセットシリーズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591606\", \"items\": [{\"key\": \"item_1698591606[].edition\", \"type\": \"text\", \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591606[].edition_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591607[].holding_agent_names\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name\", \"type\": \"text\", \"title\": \"所蔵機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_value\", \"type\": \"text\", \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_scheme\", \"type\": \"select\", \"title\": \"所蔵機関識別子スキーマ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"FANO\", \"value\": \"FANO\"}, {\"name\": \"ISIL\", \"value\": \"ISIL\"}, {\"name\": \"MARC\", \"value\": \"MARC\"}, {\"name\": \"OCLC\", \"value\": \"OCLC\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_uri\", \"type\": \"text\", \"title\": \"所蔵機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591608\", \"items\": [{\"key\": \"item_1698591608[].subitem_dcterms_date\", \"type\": \"text\", \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591608[].subitem_dcterms_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date(Literal)\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591609\", \"items\": [{\"key\": \"item_1698591609[].dcterms_extent\", \"type\": \"text\", \"title\": \"Extent\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591609[].dcterms_extent_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"大きさ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591610[].publisher_names\", \"items\": [{\"key\": \"item_1698591610[].publisher_names[].publisher_name\", \"type\": \"text\", \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_names[].publisher_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_descriptions\", \"items\": [{\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description\", \"type\": \"text\", \"title\": \"出版者注記\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_locations\", \"items\": [{\"key\": \"item_1698591610[].publisher_locations[].publisher_location\", \"type\": \"text\", \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publication_places\", \"items\": [{\"key\": \"item_1698591610[].publication_places[].publication_place\", \"type\": \"text\", \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Information\", \"ja\": \"出版者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802\", \"items\": [{\"key\": \"item_1718082005802[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"isHide\": false, \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1718082005802[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"file-text-url\", \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"isHide\": false, \"feedback\": false, \"required\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].filesize\", \"items\": [{\"key\": \"item_1718082005802[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].fileDate\", \"items\": [{\"key\": \"item_1718082005802[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].licensetype == ''license_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"isHide\": false, \"default\": \"open_no\", \"required\": false, \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].roles\", \"items\": [{\"key\": \"item_1718082005802[].roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date'' || model.item_1718082005802[arrayIndex].accessrole == ''open_login''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].provide\", \"items\": [{\"key\": \"item_1718082005802[].provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"WorkFlow\", \"ja\": \"ワークフロー\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].terms\", \"type\": \"select\", \"title\": \"利用規約\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted'' && model.item_1718082005802[arrayIndex].terms== ''term_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Restricted File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}]", + "render": "{\"meta_fix\": {\"pubdate\": {\"title\": \"PubDate\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": true, \"showlist\": false}, \"input_type\": \"datetime\", \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"input_value\": \"\"}}, \"meta_list\": {\"item_1698591601\": {\"title\": \"原文の言語\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1052\", \"title_i18n\": {\"en\": \"\", \"ja\": \"原文の言語\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591602\": {\"title\": \"部編名\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1051\", \"title_i18n\": {\"en\": \"\", \"ja\": \"部編名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591603\": {\"title\": \"カタログ\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1057\", \"title_i18n\": {\"en\": \"\", \"ja\": \"カタログ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591604\": {\"title\": \"物理的形態\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1054\", \"title_i18n\": {\"en\": \"\", \"ja\": \"物理的形態\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591605\": {\"title\": \"データセットシリーズ\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1056\", \"title_i18n\": {\"en\": \"\", \"ja\": \"データセットシリーズ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591606\": {\"title\": \"版\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1050\", \"title_i18n\": {\"en\": \"\", \"ja\": \"版\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591607\": {\"title\": \"所蔵機関\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1055\", \"title_i18n\": {\"en\": \"\", \"ja\": \"所蔵機関\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591608\": {\"title\": \"日付(リテラル)\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1049\", \"title_i18n\": {\"en\": \"\", \"ja\": \"日付(リテラル)\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591609\": {\"title\": \"大きさ\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1053\", \"title_i18n\": {\"en\": \"\", \"ja\": \"大きさ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591610\": {\"title\": \"出版者情報\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1048\", \"title_i18n\": {\"en\": \"\", \"ja\": \"出版者情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186331708\": {\"title\": \"Title\", \"option\": {\"crtf\": true, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": true, \"showlist\": true}, \"input_type\": \"cus_1001\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186385884\": {\"title\": \"Alternative Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1002\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186419668\": {\"title\": \"Creator\", \"option\": {\"crtf\": true, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1038\", \"title_i18n\": {\"en\": \"Creator\", \"ja\": \"作成者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186476635\": {\"title\": \"Access Rights\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1005\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186499011\": {\"title\": \"Rights\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1007\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186609386\": {\"title\": \"Subject\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1009\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186626617\": {\"title\": \"Description\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1010\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186643794\": {\"title\": \"Publisher\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1011\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186660861\": {\"title\": \"Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1012\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186702042\": {\"title\": \"Language\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1003\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186783814\": {\"title\": \"Identifier\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1017\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186819068\": {\"title\": \"Identifier Registration\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1018\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186859717\": {\"title\": \"Temporal\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1020\", \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186882738\": {\"title\": \"Geo Location\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1021\", \"title_i18n\": {\"en\": \"Geo Location\", \"ja\": \"位置情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186901218\": {\"title\": \"Funding Reference\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1022\", \"title_i18n\": {\"en\": \"Funding Reference\", \"ja\": \"助成情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186920753\": {\"title\": \"Source Identifier\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1023\", \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186941041\": {\"title\": \"Source Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1024\", \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186959569\": {\"title\": \"Volume Number\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1025\", \"title_i18n\": {\"en\": \"Volume Number\", \"ja\": \"巻\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186981471\": {\"title\": \"Issue Number\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1026\", \"title_i18n\": {\"en\": \"Issue Number\", \"ja\": \"号\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186994930\": {\"title\": \"Number of Pages\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_126\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187024783\": {\"title\": \"Page Start\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1028\", \"title_i18n\": {\"en\": \"Page Start\", \"ja\": \"開始ページ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187045071\": {\"title\": \"Page End\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1029\", \"title_i18n\": {\"en\": \"Page End\", \"ja\": \"終了ページ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187056579\": {\"title\": \"Bibliographic Information\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1027\", \"title_i18n\": {\"en\": \"Bibliographic Information\", \"ja\": \"書誌情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187087799\": {\"title\": \"Dissertation Number\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1030\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187112279\": {\"title\": \"Degree Name\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1031\", \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187136212\": {\"title\": \"Date Granted\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1032\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187187528\": {\"title\": \"Conference\", \"option\": {\"crtf\": true, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1034\", \"title_i18n\": {\"en\": \"Conference\", \"ja\": \"会議記述\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617258105262\": {\"title\": \"Resource Type\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": true, \"showlist\": false}, \"input_type\": \"cus_1014\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617265215918\": {\"title\": \"Version Type\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1016\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617349709064\": {\"title\": \"Contributor\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1039\", \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"寄与者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617349808926\": {\"title\": \"Version\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1015\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617351524846\": {\"title\": \"APC\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1006\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617353299429\": {\"title\": \"Relation\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1019\", \"title_i18n\": {\"en\": \"Relation\", \"ja\": \"関連情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617610673286\": {\"title\": \"Rights Holder\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1008\", \"title_i18n\": {\"en\": \"Rights Holder\", \"ja\": \"権利者情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617620223087\": {\"title\": \"Heading\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1041\", \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"見出し\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617944105607\": {\"title\": \"Degree Grantor\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1033\", \"title_i18n\": {\"en\": \"Degree Grantor\", \"ja\": \"学位授与機関\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1718082005802\": {\"title\": \"Restricted File\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_30015\", \"title_i18n\": {\"en\": \"Restricted File\", \"ja\": \"制限公開ファイル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}}, \"table_row\": [\"item_1617186331708\", \"item_1617186385884\", \"item_1617186419668\", \"item_1617349709064\", \"item_1617186476635\", \"item_1617351524846\", \"item_1617186499011\", \"item_1617610673286\", \"item_1617186609386\", \"item_1617186626617\", \"item_1617186643794\", \"item_1617186660861\", \"item_1617186702042\", \"item_1617258105262\", \"item_1617349808926\", \"item_1617265215918\", \"item_1617186783814\", \"item_1617186819068\", \"item_1617353299429\", \"item_1617186859717\", \"item_1617186882738\", \"item_1617186901218\", \"item_1617186920753\", \"item_1617186941041\", \"item_1617186959569\", \"item_1617186981471\", \"item_1617186994930\", \"item_1617187024783\", \"item_1617187045071\", \"item_1617187056579\", \"item_1617187087799\", \"item_1617187112279\", \"item_1617187136212\", \"item_1617944105607\", \"item_1617187187528\", \"item_1617620223087\", \"item_1698591601\", \"item_1698591602\", \"item_1698591603\", \"item_1698591604\", \"item_1698591605\", \"item_1698591606\", \"item_1698591607\", \"item_1698591608\", \"item_1698591609\", \"item_1698591610\", \"item_1718082005802\"], \"edit_notes\": {\"item_1698591601\": \"\", \"item_1698591602\": \"\", \"item_1698591603\": \"\", \"item_1698591604\": \"\", \"item_1698591605\": \"\", \"item_1698591606\": \"\", \"item_1698591607\": \"\", \"item_1698591608\": \"\", \"item_1698591609\": \"\", \"item_1698591610\": \"\", \"item_1617186331708\": \"\", \"item_1617186385884\": \"\", \"item_1617186419668\": \"\", \"item_1617186476635\": \"\", \"item_1617186499011\": \"\", \"item_1617186609386\": \"\", \"item_1617186626617\": \"\", \"item_1617186643794\": \"\", \"item_1617186660861\": \"\", \"item_1617186702042\": \"\", \"item_1617186783814\": \"\", \"item_1617186819068\": \"\", \"item_1617186859717\": \"\", \"item_1617186882738\": \"\", \"item_1617186901218\": \"\", \"item_1617186920753\": \"\", \"item_1617186941041\": \"\", \"item_1617186959569\": \"\", \"item_1617186981471\": \"\", \"item_1617186994930\": \"\", \"item_1617187024783\": \"\", \"item_1617187045071\": \"\", \"item_1617187056579\": \"\", \"item_1617187087799\": \"\", \"item_1617187112279\": \"\", \"item_1617187136212\": \"\", \"item_1617187187528\": \"\", \"item_1617258105262\": \"\", \"item_1617265215918\": \"\", \"item_1617349709064\": \"\", \"item_1617349808926\": \"\", \"item_1617351524846\": \"\", \"item_1617353299429\": \"\", \"item_1617610673286\": \"\", \"item_1617620223087\": \"\", \"item_1617944105607\": \"\", \"item_1718082005802\": \"\"}, \"meta_system\": {\"system_file\": {\"title\": \"File Information\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_125\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}, \"input_value\": \"\"}, \"system_identifier_doi\": {\"title\": \"Persistent Identifier(DOI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_123\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}, \"input_value\": \"\"}, \"system_identifier_hdl\": {\"title\": \"Persistent Identifier(HDL)\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_123\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}, \"input_value\": \"\"}, \"system_identifier_uri\": {\"title\": \"Persistent Identifier(URI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_123\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}, \"input_value\": \"\"}}, \"upload_file\": false, \"schemaeditor\": {\"schema\": {\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\", \"item_1617186331708\", \"item_1617258105262\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1698591601\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"original_language\", \"format\": \"object\", \"properties\": {\"original_language\": {\"type\": \"string\", \"title\": \"Original Language\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"原文の言語\"}}}}, \"title\": \"原文の言語\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591602\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"volume_title\", \"format\": \"object\", \"properties\": {\"volume_title\": {\"type\": \"string\", \"title\": \"部編名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}}, \"volume_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"部編名\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591603\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"catalog\", \"format\": \"object\", \"properties\": {\"catalog_file\": {\"type\": \"object\", \"title\": \"File\", \"format\": \"object\", \"properties\": {\"catalog_file_uri\": {\"type\": \"string\", \"title\": \"File URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}}, \"catalog_file_object_type\": {\"enum\": [null, \"thumbnail\"], \"type\": \"string\", \"title\": \"Object Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}}}}, \"catalog_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_right\": {\"type\": \"string\", \"title\": \"Rights\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}}, \"catalog_right_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_right_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"Rights\", \"format\": \"array\"}, \"catalog_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_title\": {\"type\": \"string\", \"title\": \"Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"catalog_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"format\": \"array\"}, \"catalog_licenses\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_license\": {\"type\": \"string\", \"title\": \"License\", \"format\": \"text\", \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, \"catalog_license_type\": {\"enum\": [null, \"file\", \"metadata\", \"thumbnail\"], \"type\": [\"null\", \"string\"], \"title\": \"License Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}}, \"catalog_license_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_license_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"License\", \"format\": \"array\"}, \"catalog_subjects\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_subject\": {\"type\": \"string\", \"title\": \"Subject\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"catalog_subject_uri\": {\"type\": \"string\", \"title\": \"Subject URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"catalog_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Subject Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}}, \"catalog_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"format\": \"array\"}, \"catalog_identifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_identifier\": {\"type\": \"string\", \"title\": \"Identifier\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}}, \"catalog_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"Identifier Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}}}}, \"title\": \"Identifier\", \"format\": \"array\"}, \"catalog_contributors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_type\": {\"enum\": [null, \"HostingInstitution\"], \"type\": [\"null\", \"string\"], \"title\": \"Contributor Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}}, \"contributor_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_name\": {\"type\": \"string\", \"title\": \"Contributor Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}}, \"contributor_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Contributor Name\", \"format\": \"array\"}}}, \"title\": \"Contributor\", \"format\": \"array\"}, \"catalog_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_description\": {\"type\": \"string\", \"title\": \"Description\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}}, \"catalog_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Description Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}}, \"catalog_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}}}}, \"title\": \"Descriptions\", \"format\": \"array\"}, \"catalog_access_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"アクセス権\", \"properties\": {\"catalog_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"catalog_access_right_rdf_resource\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"title\": \"Access Rights\", \"format\": \"array\"}}}, \"title\": \"カタログ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591604\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"jpcoar_format\", \"format\": \"object\", \"properties\": {\"jpcoar_format\": {\"type\": \"string\", \"title\": \"物理的形態\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}}, \"jpcoar_format_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"物理的形態\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591605\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"データセットシリーズ\", \"format\": \"object\", \"properties\": {\"jpcoar_dataset_series\": {\"enum\": [null, \"True\", \"False\"], \"type\": [\"null\", \"string\"], \"title\": \"Dataset Series\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}}}}, \"title\": \"データセットシリーズ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591606\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"edition\", \"format\": \"object\", \"properties\": {\"edition\": {\"type\": \"string\", \"title\": \"版\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}}, \"edition_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"版\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"holding_agent_name\", \"format\": \"object\", \"properties\": {\"holding_agent_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"holding_agent_name\": {\"type\": \"string\", \"title\": \"所蔵機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}}, \"holding_agent_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所蔵機関名\", \"format\": \"array\"}, \"holding_agent_name_identifier\": {\"type\": \"object\", \"title\": \"所蔵機関識別子\", \"format\": \"object\", \"properties\": {\"holding_agent_name_identifier_uri\": {\"type\": \"string\", \"title\": \"所蔵機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}}, \"holding_agent_name_identifier_value\": {\"type\": \"string\", \"title\": \"所蔵機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}}, \"holding_agent_name_identifier_scheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"], \"type\": \"string\", \"title\": \"所蔵機関識別子スキーマ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"currentEnum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"]}}}}}, \"title\": \"所蔵機関\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591608\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_date\", \"format\": \"object\", \"properties\": {\"subitem_dcterms_date\": {\"type\": \"string\", \"title\": \"日付(リテラル)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}}, \"subitem_dcterms_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}, \"system_prop\": false}, \"title\": \"日付(リテラル)\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591609\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_extent\", \"format\": \"object\", \"properties\": {\"dcterms_extent\": {\"type\": \"string\", \"title\": \"Extent\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}}, \"dcterms_extent_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"大きさ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591610\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"publisher_information\", \"format\": \"object\", \"properties\": {\"publisher_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_name\": {\"type\": \"string\", \"title\": \"出版者名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}}, \"publisher_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者名\", \"format\": \"array\"}, \"publication_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publication_place\": {\"type\": \"string\", \"title\": \"出版地(国名コード)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}}}}, \"title\": \"出版地(国名コード)\", \"format\": \"array\"}, \"publisher_locations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_location\": {\"type\": \"string\", \"title\": \"出版地\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}}}}, \"title\": \"出版地\", \"format\": \"array\"}, \"publisher_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_description\": {\"type\": \"string\", \"title\": \"出版者注記\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}}, \"publisher_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者注記\", \"format\": \"array\"}}}, \"title\": \"出版者情報\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186331708\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"required\": [\"subitem_title\", \"subitem_title_language\"], \"properties\": {\"subitem_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"subitem_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186385884\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_alternative_title\": {\"type\": \"string\", \"title\": \"その他のタイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}}, \"subitem_alternative_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Alternative Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186419668\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"iscreator\": {\"type\": \"string\", \"title\": \"iscreator\", \"format\": \"text\"}, \"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者名\", \"format\": \"array\"}, \"creatorType\": {\"type\": \"string\", \"title\": \"作成者タイプ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者姓\", \"format\": \"array\"}, \"creatorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"作成者メールアドレス\", \"format\": \"array\"}, \"creatorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}, \"creatorNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"creatorNameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"currentEnum\": [\"Personal\", \"Organizational\"]}}}, \"title\": \"作成者姓名\", \"format\": \"array\"}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"作成者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"作成者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"作成者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"IdentifierScheme\", \"ja\": \"作成者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"作成者識別子\", \"format\": \"array\"}, \"creatorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"affiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"affiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}}, \"affiliationNameIdentifierURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"affiliationNameIdentifierScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"作成者所属\", \"format\": \"array\"}, \"creatorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"creatorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Creator\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186476635\": {\"type\": \"object\", \"title\": \"Access Rights\", \"format\": \"object\", \"properties\": {\"subitem_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"subitem_access_right_uri\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"item_1617186499011\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_rights\": {\"type\": \"string\", \"title\": \"権利情報\", \"format\": \"text\"}, \"subitem_rights_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_rights_resource\": {\"type\": \"string\", \"title\": \"権利情報Resource\", \"format\": \"text\"}}}, \"title\": \"Rights\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186609386\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_subject\": {\"type\": \"string\", \"title\": \"主題\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"subitem_subject_uri\": {\"type\": \"string\", \"title\": \"主題URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"subitem_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"主題Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"currentEnum\": [\"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"]}, \"subitem_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186626617\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_description\": {\"type\": \"string\", \"title\": \"内容記述\", \"format\": \"textarea\"}, \"subitem_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"内容記述タイプ\", \"format\": \"select\", \"currentEnum\": [\"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"]}, \"subitem_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Description\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186643794\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_publisher\": {\"type\": \"string\", \"title\": \"出版者\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}}, \"subitem_publisher_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Publisher\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186660861\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_date_issued_type\": {\"enum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"subitem_date_issued_datetime\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}}}, \"title\": \"Date\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186702042\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_language\": {\"enum\": [null, \"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"]}}}, \"title\": \"Language\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186783814\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_identifier_uri\": {\"type\": \"string\", \"title\": \"識別子\", \"format\": \"text\"}, \"subitem_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186819068\": {\"type\": \"object\", \"title\": \"Identifier Registration\", \"format\": \"object\", \"properties\": {\"subitem_identifier_reg_text\": {\"type\": \"string\", \"title\": \"ID登録\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}}, \"subitem_identifier_reg_type\": {\"enum\": [null, \"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"], \"type\": [\"null\", \"string\"], \"title\": \"ID登録タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"currentEnum\": [\"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"]}}}, \"item_1617186859717\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_temporal_text\": {\"type\": \"string\", \"title\": \"時間的範囲\", \"format\": \"text\"}, \"subitem_temporal_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Temporal\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186882738\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_box\": {\"type\": \"object\", \"title\": \"位置情報(空間)\", \"format\": \"object\", \"properties\": {\"subitem_east_longitude\": {\"type\": \"string\", \"title\": \"東部経度\", \"format\": \"text\"}, \"subitem_north_latitude\": {\"type\": \"string\", \"title\": \"北部緯度\", \"format\": \"text\"}, \"subitem_south_latitude\": {\"type\": \"string\", \"title\": \"南部緯度\", \"format\": \"text\"}, \"subitem_west_longitude\": {\"type\": \"string\", \"title\": \"西部経度\", \"format\": \"text\"}}}, \"subitem_geolocation_place\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_place_text\": {\"type\": \"string\", \"title\": \"位置情報(自由記述)\", \"format\": \"text\"}}}, \"title\": \"位置情報(自由記述)\", \"format\": \"array\"}, \"subitem_geolocation_point\": {\"type\": \"object\", \"title\": \"位置情報(点)\", \"format\": \"object\", \"properties\": {\"subitem_point_latitude\": {\"type\": \"string\", \"title\": \"緯度\", \"format\": \"text\"}, \"subitem_point_longitude\": {\"type\": \"string\", \"title\": \"経度\", \"format\": \"text\"}}}}}, \"title\": \"Geo Location\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186901218\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_title\": {\"type\": \"string\", \"title\": \"研究課題名\", \"format\": \"text\"}, \"subitem_award_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"研究課題名\", \"format\": \"array\"}, \"subitem_funder_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funder_name\": {\"type\": \"string\", \"title\": \"助成機関名\", \"format\": \"text\"}, \"subitem_funder_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"助成機関名\", \"format\": \"array\"}, \"subitem_award_numbers\": {\"type\": \"object\", \"title\": \"研究課題番号\", \"format\": \"object\", \"properties\": {\"subitem_award_uri\": {\"type\": \"string\", \"title\": \"研究課題番号URI\", \"format\": \"text\"}, \"subitem_award_number\": {\"type\": \"string\", \"title\": \"研究課題番号\", \"format\": \"text\"}, \"subitem_award_number_type\": {\"enum\": [null, \"JGN\"], \"type\": [\"null\", \"string\"], \"title\": \"研究課題番号タイプ\", \"format\": \"select\"}}}, \"subitem_funding_streams\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream\": {\"type\": \"string\", \"title\": \"プログラム情報\", \"format\": \"text\"}, \"subitem_funding_stream_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"プログラム情報\", \"format\": \"array\"}, \"subitem_funder_identifiers\": {\"type\": \"object\", \"title\": \"助成機関識別子\", \"format\": \"object\", \"properties\": {\"subitem_funder_identifier\": {\"type\": \"string\", \"title\": \"助成機関識別子\", \"format\": \"text\"}, \"subitem_funder_identifier_type\": {\"enum\": [null, \"Crossref Funder\", \"e-Rad_funder\", \"GRID\", \"ISNI\", \"ROR\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"助成機関識別子タイプ\", \"format\": \"select\"}, \"subitem_funder_identifier_type_uri\": {\"type\": \"string\", \"title\": \"助成機関識別子タイプURI\", \"format\": \"text\"}}}, \"subitem_funding_stream_identifiers\": {\"type\": \"object\", \"title\": \"プログラム情報識別子\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream_identifier\": {\"type\": \"string\", \"title\": \"プログラム情報識別子\", \"format\": \"text\"}, \"subitem_funding_stream_identifier_type\": {\"enum\": [\"Crossref Funder\", \"JGN_fundingStream\"], \"type\": [\"null\", \"string\"], \"title\": \"プログラム情報識別子タイプ\", \"format\": \"select\"}, \"subitem_funding_stream_identifier_type_uri\": {\"type\": \"string\", \"title\": \"プログラム情報識別子タイプURI\", \"format\": \"text\"}}}}}, \"title\": \"Funding Reference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186920753\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_identifier\": {\"type\": \"string\", \"title\": \"収録物識別子\", \"format\": \"text\"}, \"subitem_source_identifier_type\": {\"enum\": [null, \"PISSN\", \"EISSN\", \"ISSN\", \"NCID\"], \"type\": [\"null\", \"string\"], \"title\": \"収録物識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Source Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186941041\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_title\": {\"type\": \"string\", \"title\": \"収録物名\", \"format\": \"text\"}, \"subitem_source_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Source Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186959569\": {\"type\": \"object\", \"title\": \"Volume Number\", \"format\": \"object\", \"properties\": {\"subitem_volume\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}}}}, \"item_1617186981471\": {\"type\": \"object\", \"title\": \"Issue Number\", \"format\": \"object\", \"properties\": {\"subitem_issue\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}}}}, \"item_1617186994930\": {\"type\": \"object\", \"title\": \"Number of Pages\", \"format\": \"object\", \"properties\": {\"subitem_number_of_pages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}}}}, \"item_1617187024783\": {\"type\": \"object\", \"title\": \"Page Start\", \"format\": \"object\", \"properties\": {\"subitem_start_page\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}}}}, \"item_1617187045071\": {\"type\": \"object\", \"title\": \"Page End\", \"format\": \"object\", \"properties\": {\"subitem_end_page\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}}}}, \"item_1617187056579\": {\"type\": \"object\", \"title\": \"Bibliographic Information\", \"format\": \"object\", \"properties\": {\"bibliographicPageEnd\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\"}, \"bibliographic_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"bibliographic_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\"}, \"bibliographic_titleLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"雑誌名\", \"format\": \"array\"}, \"bibliographicPageStart\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\"}, \"bibliographicIssueDates\": {\"type\": \"object\", \"title\": \"発行日\", \"format\": \"object\", \"properties\": {\"bibliographicIssueDate\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}, \"bibliographicIssueDateType\": {\"enum\": [null, \"\", \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"\", \"Issued\"]}}}, \"bibliographicIssueNumber\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\"}, \"bibliographicVolumeNumber\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\"}, \"bibliographicNumberOfPages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1617187087799\": {\"type\": \"object\", \"title\": \"Dissertation Number\", \"format\": \"object\", \"properties\": {\"subitem_dissertationnumber\": {\"type\": \"string\", \"title\": \"学位授与番号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}}}}, \"item_1617187112279\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"学位名\", \"format\": \"object\", \"properties\": {\"subitem_degreename\": {\"type\": \"string\", \"title\": \"学位名\", \"format\": \"text\"}, \"subitem_degreename_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Degree Name\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617187136212\": {\"type\": \"object\", \"title\": \"Date Granted\", \"format\": \"object\", \"properties\": {\"subitem_dategranted\": {\"type\": \"string\", \"title\": \"学位授与年月日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}}}}, \"item_1617187187528\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_date\": {\"type\": \"object\", \"title\": \"開催期間\", \"format\": \"object\", \"properties\": {\"subitem_conference_period\": {\"type\": \"string\", \"title\": \"開催期間\", \"format\": \"text\"}, \"subitem_conference_end_day\": {\"type\": \"string\", \"title\": \"終了日\", \"format\": \"text\"}, \"subitem_conference_end_year\": {\"type\": \"string\", \"title\": \"終了年\", \"format\": \"text\"}, \"subitem_conference_end_month\": {\"type\": \"string\", \"title\": \"終了月\", \"format\": \"text\"}, \"subitem_conference_start_day\": {\"type\": \"string\", \"title\": \"開始日\", \"format\": \"text\"}, \"subitem_conference_start_year\": {\"type\": \"string\", \"title\": \"開始年\", \"format\": \"text\"}, \"subitem_conference_start_month\": {\"type\": \"string\", \"title\": \"開始月\", \"format\": \"text\"}, \"subitem_conference_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"subitem_conference_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_name\": {\"type\": \"string\", \"title\": \"会議名\", \"format\": \"text\"}, \"subitem_conference_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"会議名\", \"format\": \"array\"}, \"subitem_conference_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_place\": {\"type\": \"string\", \"title\": \"開催地\", \"format\": \"text\"}, \"subitem_conference_place_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催地\", \"format\": \"array\"}, \"subitem_conference_venues\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_venue\": {\"type\": \"string\", \"title\": \"開催会場\", \"format\": \"text\"}, \"subitem_conference_venue_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催会場\", \"format\": \"array\"}, \"subitem_conference_country\": {\"enum\": [null, \"JPN\", \"ABW\", \"AFG\", \"AGO\", \"AIA\", \"ALA\", \"ALB\", \"AND\", \"ARE\", \"ARG\", \"ARM\", \"ASM\", \"ATA\", \"ATF\", \"ATG\", \"AUS\", \"AUT\", \"AZE\", \"BDI\", \"BEL\", \"BEN\", \"BES\", \"BFA\", \"BGD\", \"BGR\", \"BHR\", \"BHS\", \"BIH\", \"BLM\", \"BLR\", \"BLZ\", \"BMU\", \"BOL\", \"BRA\", \"BRB\", \"BRN\", \"BTN\", \"BVT\", \"BWA\", \"CAF\", \"CAN\", \"CCK\", \"CHE\", \"CHL\", \"CHN\", \"CIV\", \"CMR\", \"COD\", \"COG\", \"COK\", \"COL\", \"COM\", \"CPV\", \"CRI\", \"CUB\", \"CUW\", \"CXR\", \"CYM\", \"CYP\", \"CZE\", \"DEU\", \"DJI\", \"DMA\", \"DNK\", \"DOM\", \"DZA\", \"ECU\", \"EGY\", \"ERI\", \"ESH\", \"ESP\", \"EST\", \"ETH\", \"FIN\", \"FJI\", \"FLK\", \"FRA\", \"FRO\", \"FSM\", \"GAB\", \"GBR\", \"GEO\", \"GGY\", \"GHA\", \"GIB\", \"GIN\", \"GLP\", \"GMB\", \"GNB\", \"GNQ\", \"GRC\", \"GRD\", \"GRL\", \"GTM\", \"GUF\", \"GUM\", \"GUY\", \"HKG\", \"HMD\", \"HND\", \"HRV\", \"HTI\", \"HUN\", \"IDN\", \"IMN\", \"IND\", \"IOT\", \"IRL\", \"IRN\", \"IRQ\", \"ISL\", \"ISR\", \"ITA\", \"JAM\", \"JEY\", \"JOR\", \"KAZ\", \"KEN\", \"KGZ\", \"KHM\", \"KIR\", \"KNA\", \"KOR\", \"KWT\", \"LAO\", \"LBN\", \"LBR\", \"LBY\", \"LCA\", \"LIE\", \"LKA\", \"LSO\", \"LTU\", \"LUX\", \"LVA\", \"MAC\", \"MAF\", \"MAR\", \"MCO\", \"MDA\", \"MDG\", \"MDV\", \"MEX\", \"MHL\", \"MKD\", \"MLI\", \"MLT\", \"MMR\", \"MNE\", \"MNG\", \"MNP\", \"MOZ\", \"MRT\", \"MSR\", \"MTQ\", \"MUS\", \"MWI\", \"MYS\", \"MYT\", \"NAM\", \"NCL\", \"NER\", \"NFK\", \"NGA\", \"NIC\", \"NIU\", \"NLD\", \"NOR\", \"NPL\", \"NRU\", \"NZL\", \"OMN\", \"PAK\", \"PAN\", \"PCN\", \"PER\", \"PHL\", \"PLW\", \"PNG\", \"POL\", \"PRI\", \"PRK\", \"PRT\", \"PRY\", \"PSE\", \"PYF\", \"QAT\", \"REU\", \"ROU\", \"RUS\", \"RWA\", \"SAU\", \"SDN\", \"SEN\", \"SGP\", \"SGS\", \"SHN\", \"SJM\", \"SLB\", \"SLE\", \"SLV\", \"SMR\", \"SOM\", \"SPM\", \"SRB\", \"SSD\", \"STP\", \"SUR\", \"SVK\", \"SVN\", \"SWE\", \"SWZ\", \"SXM\", \"SYC\", \"SYR\", \"TCA\", \"TCD\", \"TGO\", \"THA\", \"TJK\", \"TKL\", \"TKM\", \"TLS\", \"TON\", \"TTO\", \"TUN\", \"TUR\", \"TUV\", \"TWN\", \"TZA\", \"UGA\", \"UKR\", \"UMI\", \"URY\", \"USA\", \"UZB\", \"VAT\", \"VCT\", \"VEN\", \"VGB\", \"VIR\", \"VNM\", \"VUT\", \"WLF\", \"WSM\", \"YEM\", \"ZAF\", \"ZMB\", \"ZWE\"], \"type\": [\"null\", \"string\"], \"title\": \"開催国\", \"format\": \"select\"}, \"subitem_conference_sequence\": {\"type\": \"string\", \"title\": \"回次\", \"format\": \"text\"}, \"subitem_conference_sponsors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_sponsor\": {\"type\": \"string\", \"title\": \"主催機関\", \"format\": \"text\"}, \"subitem_conference_sponsor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"主催機関\", \"format\": \"array\"}}}, \"title\": \"Conference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617258105262\": {\"type\": \"object\", \"title\": \"Resource Type\", \"format\": \"object\", \"required\": [\"resourceuri\", \"resourcetype\"], \"properties\": {\"resourceuri\": {\"type\": \"string\", \"title\": \"資源タイプ識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}}, \"resourcetype\": {\"enum\": [null, \"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"資源タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"currentEnum\": [\"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"]}}, \"system_prop\": true}, \"item_1617265215918\": {\"type\": \"object\", \"title\": \"Version Type\", \"format\": \"object\", \"properties\": {\"subitem_version_type\": {\"enum\": [null, \"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"], \"type\": [\"null\", \"string\"], \"title\": \"出版タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"currentEnum\": [\"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"]}, \"subitem_peer_reviewed\": {\"enum\": [null, \"Peer reviewed\", \"Not peer reviewed\"], \"type\": [\"null\", \"string\"], \"title\": \"査読の有無\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"currentEnum\": [\"Peer reviewed\", \"Not peer reviewed\"]}, \"subitem_version_resource\": {\"type\": \"string\", \"title\": \"出版タイプResource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}}}, \"system_prop\": true}, \"item_1617349709064\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者名\", \"format\": \"array\"}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者姓\", \"format\": \"array\"}, \"contributorType\": {\"enum\": [null, \"ContactPerson\", \"DataCollector\", \"DataCurator\", \"DataManager\", \"Distributor\", \"Editor\", \"HostingInstitution\", \"Producer\", \"ProjectLeader\", \"ProjectManager\", \"ProjectMember\", \"RelatedPerson\", \"Researcher\", \"ResearchGroup\", \"Sponsor\", \"Supervisor\", \"WorkPackageLeader\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"寄与者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"寄与者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"寄与者識別子\", \"format\": \"array\"}, \"contributorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"寄与者メールアドレス\", \"format\": \"array\"}, \"contributorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"lang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"nameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"editAble\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}}, \"contributorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}}}, \"title\": \"寄与者姓名\", \"format\": \"array\"}, \"contributorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"contributorAffiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"contributorAffiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"contributorAffiliationScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"currentEnum\": [\"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"]}, \"contributorAffiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"寄与者所属\", \"format\": \"array\"}, \"contributorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"contributorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Contributor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617349808926\": {\"type\": \"object\", \"title\": \"Version\", \"format\": \"object\", \"properties\": {\"subitem_version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}}}}, \"item_1617351524846\": {\"type\": \"object\", \"title\": \"APC\", \"format\": \"object\", \"properties\": {\"subitem_apc\": {\"enum\": [null, \"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"], \"type\": [\"null\", \"string\"], \"title\": \"APC\", \"format\": \"select\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"currentEnum\": [\"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"]}}}, \"item_1617353299429\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name_text\": {\"type\": \"string\", \"title\": \"関連名称\", \"format\": \"text\"}, \"subitem_relation_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"関連名称\", \"format\": \"array\"}, \"subitem_relation_type\": {\"enum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"], \"type\": [\"null\", \"string\"], \"title\": \"関連タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"]}, \"subitem_relation_type_id\": {\"type\": \"object\", \"title\": \"関連識別子\", \"format\": \"object\", \"properties\": {\"subitem_relation_type_select\": {\"enum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"]}, \"subitem_relation_type_id_text\": {\"type\": \"string\", \"title\": \"関連識別子\", \"format\": \"text\"}}}}}, \"title\": \"Relation\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617610673286\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"権利者識別子\", \"format\": \"text\"}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"権利者識別子URI\", \"format\": \"text\"}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"権利者識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"権利者識別子\", \"format\": \"array\"}, \"rightHolderNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"rightHolderName\": {\"type\": \"string\", \"title\": \"権利者名\", \"format\": \"text\"}, \"rightHolderLanguage\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"権利者名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Rights Holder\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617620223087\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_heading_headline\": {\"type\": \"string\", \"title\": \"小見出し\", \"format\": \"text\"}, \"subitem_heading_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_heading_banner_headline\": {\"type\": \"string\", \"title\": \"大見出し\", \"format\": \"text\"}}, \"system_prop\": true}, \"title\": \"Heading\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617944105607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_name\": {\"type\": \"string\", \"title\": \"学位授与機関名\", \"format\": \"text\"}, \"subitem_degreegrantor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"学位授与機関名\", \"format\": \"array\"}, \"subitem_degreegrantor_identifier\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_identifier_name\": {\"type\": \"string\", \"title\": \"学位授与機関識別子\", \"format\": \"text\"}, \"subitem_degreegrantor_identifier_scheme\": {\"enum\": [null, \"kakenhi\"], \"type\": [\"null\", \"string\"], \"title\": \"学位授与機関識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"学位授与機関識別子\", \"format\": \"array\"}}}, \"title\": \"Degree Grantor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1718082005802\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\", \"currentEnum\": []}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\", \"currentEnum\": []}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_no\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"Restricted File\", \"maxItems\": 9999, \"minItems\": 1}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}}, \"description\": \"\"}}, \"table_row_map\": {\"form\": [{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"item_1617186331708\", \"items\": [{\"key\": \"item_1617186331708[].subitem_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186331708[].subitem_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186385884\", \"items\": [{\"key\": \"item_1617186385884[].subitem_alternative_title\", \"type\": \"text\", \"title\": \"その他のタイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186385884[].subitem_alternative_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Alternative Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668\", \"items\": [{\"key\": \"item_1617186419668[].creatorType\", \"type\": \"text\", \"title\": \"作成者タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"作成者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"e-Rad\", \"value\": \"e-Rad\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"WEKO\", \"value\": \"WEKO\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier Scheme\", \"ja\": \"作成者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"作成者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorNames[].creatorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name\", \"ja\": \"作成者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].familyNames\", \"items\": [{\"key\": \"item_1617186419668[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Family Name\", \"ja\": \"作成者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].givenNames\", \"items\": [{\"key\": \"item_1617186419668[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Given Name\", \"ja\": \"作成者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAlternatives\", \"items\": [{\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Alternative Name\", \"ja\": \"作成者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"作成者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorMails\", \"items\": [{\"key\": \"item_1617186419668[].creatorMails[].creatorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Email Address\", \"ja\": \"作成者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617186419668'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Creator\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator\", \"ja\": \"作成者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064\", \"items\": [{\"key\": \"item_1617349709064[].contributorType\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ContactPerson\", \"value\": \"ContactPerson\"}, {\"name\": \"DataCollector\", \"value\": \"DataCollector\"}, {\"name\": \"DataCurator\", \"value\": \"DataCurator\"}, {\"name\": \"DataManager\", \"value\": \"DataManager\"}, {\"name\": \"Distributor\", \"value\": \"Distributor\"}, {\"name\": \"Editor\", \"value\": \"Editor\"}, {\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}, {\"name\": \"Producer\", \"value\": \"Producer\"}, {\"name\": \"ProjectLeader\", \"value\": \"ProjectLeader\"}, {\"name\": \"ProjectManager\", \"value\": \"ProjectManager\"}, {\"name\": \"ProjectMember\", \"value\": \"ProjectMember\"}, {\"name\": \"RelatedPerson\", \"value\": \"RelatedPerson\"}, {\"name\": \"Researcher\", \"value\": \"Researcher\"}, {\"name\": \"ResearchGroup\", \"value\": \"ResearchGroup\"}, {\"name\": \"Sponsor\", \"value\": \"Sponsor\"}, {\"name\": \"Supervisor\", \"value\": \"Supervisor\"}, {\"name\": \"WorkPackageLeader\", \"value\": \"WorkPackageLeader\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"寄与者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"寄与者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorNames[].contributorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].lang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].nameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"寄与者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].familyNames\", \"items\": [{\"key\": \"item_1617349709064[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Family Name\", \"ja\": \"寄与者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].givenNames\", \"items\": [{\"key\": \"item_1617349709064[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Given Name\", \"ja\": \"寄与者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAlternatives\", \"items\": [{\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Alternative Name\", \"ja\": \"寄与者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"寄与者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorMails\", \"items\": [{\"key\": \"item_1617349709064[].contributorMails[].contributorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Email Address\", \"ja\": \"寄与者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617349709064[]'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"寄与者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186476635.subitem_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635.subitem_access_right_uri\", \"type\": \"text\", \"title\": \"アクセス権URI\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617351524846\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617351524846.subitem_apc\", \"type\": \"select\", \"title\": \"APC\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Paid\", \"value\": \"Paid\"}, {\"name\": \"Partially waived\", \"value\": \"Partially waived\"}, {\"name\": \"Fully waived\", \"value\": \"Fully waived\"}, {\"name\": \"Not charged\", \"value\": \"Not charged\"}, {\"name\": \"Not required\", \"value\": \"Not required\"}, {\"name\": \"Unknown\", \"value\": \"Unknown\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"APC\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186499011\", \"items\": [{\"key\": \"item_1617186499011[].subitem_rights_resource\", \"type\": \"text\", \"title\": \"権利情報Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights Resource\", \"ja\": \"権利情報Resource\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights\", \"type\": \"text\", \"title\": \"権利情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617610673286[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"権利者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier Scheme\", \"ja\": \"権利者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"権利者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier URI\", \"ja\": \"権利者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286[].rightHolderNames\", \"items\": [{\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderName\", \"type\": \"text\", \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderLanguage\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights Holder\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder\", \"ja\": \"権利者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186609386\", \"items\": [{\"key\": \"item_1617186609386[].subitem_subject_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_scheme\", \"type\": \"select\", \"title\": \"主題Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject\", \"type\": \"text\", \"title\": \"主題\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_uri\", \"type\": \"text\", \"title\": \"主題URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186626617\", \"items\": [{\"key\": \"item_1617186626617[].subitem_description_type\", \"type\": \"select\", \"title\": \"内容記述タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description\", \"type\": \"textarea\", \"title\": \"内容記述\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186643794\", \"items\": [{\"key\": \"item_1617186643794[].subitem_publisher\", \"type\": \"text\", \"title\": \"出版者\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186643794[].subitem_publisher_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186660861\", \"items\": [{\"key\": \"item_1617186660861[].subitem_date_issued_datetime\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186660861[].subitem_date_issued_type\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Date\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186702042\", \"items\": [{\"key\": \"item_1617186702042[].subitem_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"jpn\", \"value\": \"jpn\"}, {\"name\": \"eng\", \"value\": \"eng\"}, {\"name\": \"aar\", \"value\": \"aar\"}, {\"name\": \"abk\", \"value\": \"abk\"}, {\"name\": \"afr\", \"value\": \"afr\"}, {\"name\": \"aka\", \"value\": \"aka\"}, {\"name\": \"amh\", \"value\": \"amh\"}, {\"name\": \"ara\", \"value\": \"ara\"}, {\"name\": \"arg\", \"value\": \"arg\"}, {\"name\": \"asm\", \"value\": \"asm\"}, {\"name\": \"ava\", \"value\": \"ava\"}, {\"name\": \"ave\", \"value\": \"ave\"}, {\"name\": \"aym\", \"value\": \"aym\"}, {\"name\": \"aze\", \"value\": \"aze\"}, {\"name\": \"bak\", \"value\": \"bak\"}, {\"name\": \"bam\", \"value\": \"bam\"}, {\"name\": \"bel\", \"value\": \"bel\"}, {\"name\": \"ben\", \"value\": \"ben\"}, {\"name\": \"bis\", \"value\": \"bis\"}, {\"name\": \"bod\", \"value\": \"bod\"}, {\"name\": \"bos\", \"value\": \"bos\"}, {\"name\": \"bre\", \"value\": \"bre\"}, {\"name\": \"bul\", \"value\": \"bul\"}, {\"name\": \"cat\", \"value\": \"cat\"}, {\"name\": \"ces\", \"value\": \"ces\"}, {\"name\": \"cha\", \"value\": \"cha\"}, {\"name\": \"che\", \"value\": \"che\"}, {\"name\": \"chu\", \"value\": \"chu\"}, {\"name\": \"chv\", \"value\": \"chv\"}, {\"name\": \"cor\", \"value\": \"cor\"}, {\"name\": \"cos\", \"value\": \"cos\"}, {\"name\": \"cre\", \"value\": \"cre\"}, {\"name\": \"cym\", \"value\": \"cym\"}, {\"name\": \"dan\", \"value\": \"dan\"}, {\"name\": \"deu\", \"value\": \"deu\"}, {\"name\": \"div\", \"value\": \"div\"}, {\"name\": \"dzo\", \"value\": \"dzo\"}, {\"name\": \"ell\", \"value\": \"ell\"}, {\"name\": \"epo\", \"value\": \"epo\"}, {\"name\": \"est\", \"value\": \"est\"}, {\"name\": \"eus\", \"value\": \"eus\"}, {\"name\": \"ewe\", \"value\": \"ewe\"}, {\"name\": \"fao\", \"value\": \"fao\"}, {\"name\": \"fas\", \"value\": \"fas\"}, {\"name\": \"fij\", \"value\": \"fij\"}, {\"name\": \"fin\", \"value\": \"fin\"}, {\"name\": \"fra\", \"value\": \"fra\"}, {\"name\": \"fry\", \"value\": \"fry\"}, {\"name\": \"ful\", \"value\": \"ful\"}, {\"name\": \"gla\", \"value\": \"gla\"}, {\"name\": \"gle\", \"value\": \"gle\"}, {\"name\": \"glg\", \"value\": \"glg\"}, {\"name\": \"glv\", \"value\": \"glv\"}, {\"name\": \"grn\", \"value\": \"grn\"}, {\"name\": \"guj\", \"value\": \"guj\"}, {\"name\": \"hat\", \"value\": \"hat\"}, {\"name\": \"hau\", \"value\": \"hau\"}, {\"name\": \"heb\", \"value\": \"heb\"}, {\"name\": \"her\", \"value\": \"her\"}, {\"name\": \"hin\", \"value\": \"hin\"}, {\"name\": \"hmo\", \"value\": \"hmo\"}, {\"name\": \"hrv\", \"value\": \"hrv\"}, {\"name\": \"hun\", \"value\": \"hun\"}, {\"name\": \"hye\", \"value\": \"hye\"}, {\"name\": \"ibo\", \"value\": \"ibo\"}, {\"name\": \"ido\", \"value\": \"ido\"}, {\"name\": \"iii\", \"value\": \"iii\"}, {\"name\": \"iku\", \"value\": \"iku\"}, {\"name\": \"ile\", \"value\": \"ile\"}, {\"name\": \"ina\", \"value\": \"ina\"}, {\"name\": \"ind\", \"value\": \"ind\"}, {\"name\": \"ipk\", \"value\": \"ipk\"}, {\"name\": \"isl\", \"value\": \"isl\"}, {\"name\": \"ita\", \"value\": \"ita\"}, {\"name\": \"jav\", \"value\": \"jav\"}, {\"name\": \"kal\", \"value\": \"kal\"}, {\"name\": \"kan\", \"value\": \"kan\"}, {\"name\": \"kas\", \"value\": \"kas\"}, {\"name\": \"kat\", \"value\": \"kat\"}, {\"name\": \"kau\", \"value\": \"kau\"}, {\"name\": \"kaz\", \"value\": \"kaz\"}, {\"name\": \"khm\", \"value\": \"khm\"}, {\"name\": \"kik\", \"value\": \"kik\"}, {\"name\": \"kin\", \"value\": \"kin\"}, {\"name\": \"kir\", \"value\": \"kir\"}, {\"name\": \"kom\", \"value\": \"kom\"}, {\"name\": \"kon\", \"value\": \"kon\"}, {\"name\": \"kor\", \"value\": \"kor\"}, {\"name\": \"kua\", \"value\": \"kua\"}, {\"name\": \"kur\", \"value\": \"kur\"}, {\"name\": \"lao\", \"value\": \"lao\"}, {\"name\": \"lat\", \"value\": \"lat\"}, {\"name\": \"lav\", \"value\": \"lav\"}, {\"name\": \"lim\", \"value\": \"lim\"}, {\"name\": \"lin\", \"value\": \"lin\"}, {\"name\": \"lit\", \"value\": \"lit\"}, {\"name\": \"ltz\", \"value\": \"ltz\"}, {\"name\": \"lub\", \"value\": \"lub\"}, {\"name\": \"lug\", \"value\": \"lug\"}, {\"name\": \"mah\", \"value\": \"mah\"}, {\"name\": \"mal\", \"value\": \"mal\"}, {\"name\": \"mar\", \"value\": \"mar\"}, {\"name\": \"mkd\", \"value\": \"mkd\"}, {\"name\": \"mlg\", \"value\": \"mlg\"}, {\"name\": \"mlt\", \"value\": \"mlt\"}, {\"name\": \"mon\", \"value\": \"mon\"}, {\"name\": \"mri\", \"value\": \"mri\"}, {\"name\": \"msa\", \"value\": \"msa\"}, {\"name\": \"mya\", \"value\": \"mya\"}, {\"name\": \"nau\", \"value\": \"nau\"}, {\"name\": \"nav\", \"value\": \"nav\"}, {\"name\": \"nbl\", \"value\": \"nbl\"}, {\"name\": \"nde\", \"value\": \"nde\"}, {\"name\": \"ndo\", \"value\": \"ndo\"}, {\"name\": \"nep\", \"value\": \"nep\"}, {\"name\": \"nld\", \"value\": \"nld\"}, {\"name\": \"nno\", \"value\": \"nno\"}, {\"name\": \"nob\", \"value\": \"nob\"}, {\"name\": \"nor\", \"value\": \"nor\"}, {\"name\": \"nya\", \"value\": \"nya\"}, {\"name\": \"oci\", \"value\": \"oci\"}, {\"name\": \"oji\", \"value\": \"oji\"}, {\"name\": \"ori\", \"value\": \"ori\"}, {\"name\": \"orm\", \"value\": \"orm\"}, {\"name\": \"oss\", \"value\": \"oss\"}, {\"name\": \"pan\", \"value\": \"pan\"}, {\"name\": \"pli\", \"value\": \"pli\"}, {\"name\": \"pol\", \"value\": \"pol\"}, {\"name\": \"por\", \"value\": \"por\"}, {\"name\": \"pus\", \"value\": \"pus\"}, {\"name\": \"que\", \"value\": \"que\"}, {\"name\": \"roh\", \"value\": \"roh\"}, {\"name\": \"ron\", \"value\": \"ron\"}, {\"name\": \"run\", \"value\": \"run\"}, {\"name\": \"rus\", \"value\": \"rus\"}, {\"name\": \"sag\", \"value\": \"sag\"}, {\"name\": \"san\", \"value\": \"san\"}, {\"name\": \"sin\", \"value\": \"sin\"}, {\"name\": \"slk\", \"value\": \"slk\"}, {\"name\": \"slv\", \"value\": \"slv\"}, {\"name\": \"sme\", \"value\": \"sme\"}, {\"name\": \"smo\", \"value\": \"smo\"}, {\"name\": \"sna\", \"value\": \"sna\"}, {\"name\": \"snd\", \"value\": \"snd\"}, {\"name\": \"som\", \"value\": \"som\"}, {\"name\": \"sot\", \"value\": \"sot\"}, {\"name\": \"spa\", \"value\": \"spa\"}, {\"name\": \"sqi\", \"value\": \"sqi\"}, {\"name\": \"srd\", \"value\": \"srd\"}, {\"name\": \"srp\", \"value\": \"srp\"}, {\"name\": \"ssw\", \"value\": \"ssw\"}, {\"name\": \"sun\", \"value\": \"sun\"}, {\"name\": \"swa\", \"value\": \"swa\"}, {\"name\": \"swe\", \"value\": \"swe\"}, {\"name\": \"tah\", \"value\": \"tah\"}, {\"name\": \"tam\", \"value\": \"tam\"}, {\"name\": \"tat\", \"value\": \"tat\"}, {\"name\": \"tel\", \"value\": \"tel\"}, {\"name\": \"tgk\", \"value\": \"tgk\"}, {\"name\": \"tgl\", \"value\": \"tgl\"}, {\"name\": \"tha\", \"value\": \"tha\"}, {\"name\": \"tir\", \"value\": \"tir\"}, {\"name\": \"ton\", \"value\": \"ton\"}, {\"name\": \"tsn\", \"value\": \"tsn\"}, {\"name\": \"tso\", \"value\": \"tso\"}, {\"name\": \"tuk\", \"value\": \"tuk\"}, {\"name\": \"tur\", \"value\": \"tur\"}, {\"name\": \"twi\", \"value\": \"twi\"}, {\"name\": \"uig\", \"value\": \"uig\"}, {\"name\": \"ukr\", \"value\": \"ukr\"}, {\"name\": \"urd\", \"value\": \"urd\"}, {\"name\": \"uzb\", \"value\": \"uzb\"}, {\"name\": \"ven\", \"value\": \"ven\"}, {\"name\": \"vie\", \"value\": \"vie\"}, {\"name\": \"vol\", \"value\": \"vol\"}, {\"name\": \"wln\", \"value\": \"wln\"}, {\"name\": \"wol\", \"value\": \"wol\"}, {\"name\": \"xho\", \"value\": \"xho\"}, {\"name\": \"yid\", \"value\": \"yid\"}, {\"name\": \"yor\", \"value\": \"yor\"}, {\"name\": \"zha\", \"value\": \"zha\"}, {\"name\": \"zho\", \"value\": \"zho\"}, {\"name\": \"zul\", \"value\": \"zul\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Language\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617258105262.resourceuri\", \"type\": \"text\", \"title\": \"資源タイプ識別子\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262.resourcetype\", \"type\": \"select\", \"title\": \"資源タイプ \", \"isHide\": false, \"onChange\": \"resourceTypeSelect()\", \"required\": false, \"titleMap\": [{\"name\": \"conference paper\", \"value\": \"conference paper\"}, {\"name\": \"data paper\", \"value\": \"data paper\"}, {\"name\": \"departmental bulletin paper\", \"value\": \"departmental bulletin paper\"}, {\"name\": \"editorial\", \"value\": \"editorial\"}, {\"name\": \"journal\", \"value\": \"journal\"}, {\"name\": \"journal article\", \"value\": \"journal article\"}, {\"name\": \"newspaper\", \"value\": \"newspaper\"}, {\"name\": \"review article\", \"value\": \"review article\"}, {\"name\": \"other periodical\", \"value\": \"other periodical\"}, {\"name\": \"software paper\", \"value\": \"software paper\"}, {\"name\": \"article\", \"value\": \"article\"}, {\"name\": \"book\", \"value\": \"book\"}, {\"name\": \"book part\", \"value\": \"book part\"}, {\"name\": \"cartographic material\", \"value\": \"cartographic material\"}, {\"name\": \"map\", \"value\": \"map\"}, {\"name\": \"conference output\", \"value\": \"conference output\"}, {\"name\": \"conference presentation\", \"value\": \"conference presentation\"}, {\"name\": \"conference proceedings\", \"value\": \"conference proceedings\"}, {\"name\": \"conference poster\", \"value\": \"conference poster\"}, {\"name\": \"aggregated data\", \"value\": \"aggregated data\"}, {\"name\": \"clinical trial data\", \"value\": \"clinical trial data\"}, {\"name\": \"compiled data\", \"value\": \"compiled data\"}, {\"name\": \"dataset\", \"value\": \"dataset\"}, {\"name\": \"encoded data\", \"value\": \"encoded data\"}, {\"name\": \"experimental data\", \"value\": \"experimental data\"}, {\"name\": \"genomic data\", \"value\": \"genomic data\"}, {\"name\": \"geospatial data\", \"value\": \"geospatial data\"}, {\"name\": \"laboratory notebook\", \"value\": \"laboratory notebook\"}, {\"name\": \"measurement and test data\", \"value\": \"measurement and test data\"}, {\"name\": \"observational data\", \"value\": \"observational data\"}, {\"name\": \"recorded data\", \"value\": \"recorded data\"}, {\"name\": \"simulation data\", \"value\": \"simulation data\"}, {\"name\": \"survey data\", \"value\": \"survey data\"}, {\"name\": \"image\", \"value\": \"image\"}, {\"name\": \"still image\", \"value\": \"still image\"}, {\"name\": \"moving image\", \"value\": \"moving image\"}, {\"name\": \"video\", \"value\": \"video\"}, {\"name\": \"lecture\", \"value\": \"lecture\"}, {\"name\": \"design patent\", \"value\": \"design patent\"}, {\"name\": \"patent\", \"value\": \"patent\"}, {\"name\": \"PCT application\", \"value\": \"PCT application\"}, {\"name\": \"plant patent\", \"value\": \"plant patent\"}, {\"name\": \"plant variety protection\", \"value\": \"plant variety protection\"}, {\"name\": \"software patent\", \"value\": \"software patent\"}, {\"name\": \"trademark\", \"value\": \"trademark\"}, {\"name\": \"utility model\", \"value\": \"utility model\"}, {\"name\": \"report\", \"value\": \"report\"}, {\"name\": \"research report\", \"value\": \"research report\"}, {\"name\": \"technical report\", \"value\": \"technical report\"}, {\"name\": \"policy report\", \"value\": \"policy report\"}, {\"name\": \"working paper\", \"value\": \"working paper\"}, {\"name\": \"data management plan\", \"value\": \"data management plan\"}, {\"name\": \"sound\", \"value\": \"sound\"}, {\"name\": \"thesis\", \"value\": \"thesis\"}, {\"name\": \"bachelor thesis\", \"value\": \"bachelor thesis\"}, {\"name\": \"master thesis\", \"value\": \"master thesis\"}, {\"name\": \"doctoral thesis\", \"value\": \"doctoral thesis\"}, {\"name\": \"commentary\", \"value\": \"commentary\"}, {\"name\": \"design\", \"value\": \"design\"}, {\"name\": \"industrial design\", \"value\": \"industrial design\"}, {\"name\": \"interactive resource\", \"value\": \"interactive resource\"}, {\"name\": \"layout design\", \"value\": \"layout design\"}, {\"name\": \"learning object\", \"value\": \"learning object\"}, {\"name\": \"manuscript\", \"value\": \"manuscript\"}, {\"name\": \"musical notation\", \"value\": \"musical notation\"}, {\"name\": \"peer review\", \"value\": \"peer review\"}, {\"name\": \"research proposal\", \"value\": \"research proposal\"}, {\"name\": \"research protocol\", \"value\": \"research protocol\"}, {\"name\": \"software\", \"value\": \"software\"}, {\"name\": \"source code\", \"value\": \"source code\"}, {\"name\": \"technical documentation\", \"value\": \"technical documentation\"}, {\"name\": \"transcription\", \"value\": \"transcription\"}, {\"name\": \"workflow\", \"value\": \"workflow\"}, {\"name\": \"other\", \"value\": \"other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Resource Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349808926\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617349808926.subitem_version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617265215918.subitem_version_type\", \"type\": \"select\", \"title\": \"出版タイプ\", \"isHide\": false, \"onChange\": \"changedVersionType(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"AO\", \"value\": \"AO\"}, {\"name\": \"SMUR\", \"value\": \"SMUR\"}, {\"name\": \"AM\", \"value\": \"AM\"}, {\"name\": \"P\", \"value\": \"P\"}, {\"name\": \"VoR\", \"value\": \"VoR\"}, {\"name\": \"CVoR\", \"value\": \"CVoR\"}, {\"name\": \"EVoR\", \"value\": \"EVoR\"}, {\"name\": \"NA\", \"value\": \"NA\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_version_resource\", \"type\": \"text\", \"title\": \"出版タイプResource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-version-resource\", \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_peer_reviewed\", \"type\": \"select\", \"title\": \"査読の有無\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Peer reviewed\", \"value\": \"Peer reviewed\", \"name_i18n\": {\"en\": \"Peer reviewed\", \"ja\": \"査読あり\"}}, {\"name\": \"Not peer reviewed\", \"value\": \"Not peer reviewed\", \"name_i18n\": {\"en\": \"Not peer reviewed\", \"ja\": \"査読なし\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186783814\", \"items\": [{\"key\": \"item_1617186783814[].subitem_identifier_uri\", \"type\": \"text\", \"title\": \"識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186783814[].subitem_identifier_type\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186819068.subitem_identifier_reg_text\", \"type\": \"text\", \"title\": \"ID登録\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068.subitem_identifier_reg_type\", \"type\": \"select\", \"title\": \"ID登録タイプ\", \"isHide\": false, \"readonly\": true, \"required\": false, \"titleMap\": [{\"name\": \"JaLC\", \"value\": \"JaLC\"}, {\"name\": \"Crossref\", \"value\": \"Crossref\"}, {\"name\": \"DataCite\", \"value\": \"DataCite\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Identifier Registration\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type\", \"type\": \"select\", \"title\": \"関連タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"isVersionOf\", \"value\": \"isVersionOf\"}, {\"name\": \"hasVersion\", \"value\": \"hasVersion\"}, {\"name\": \"isPartOf\", \"value\": \"isPartOf\"}, {\"name\": \"hasPart\", \"value\": \"hasPart\"}, {\"name\": \"isReferencedBy\", \"value\": \"isReferencedBy\"}, {\"name\": \"references\", \"value\": \"references\"}, {\"name\": \"isFormatOf\", \"value\": \"isFormatOf\"}, {\"name\": \"hasFormat\", \"value\": \"hasFormat\"}, {\"name\": \"isReplacedBy\", \"value\": \"isReplacedBy\"}, {\"name\": \"replaces\", \"value\": \"replaces\"}, {\"name\": \"isRequiredBy\", \"value\": \"isRequiredBy\"}, {\"name\": \"requires\", \"value\": \"requires\"}, {\"name\": \"isSupplementedBy\", \"value\": \"isSupplementedBy\"}, {\"name\": \"isSupplementTo\", \"value\": \"isSupplementTo\"}, {\"name\": \"isIdenticalTo\", \"value\": \"isIdenticalTo\"}, {\"name\": \"isDerivedFrom\", \"value\": \"isDerivedFrom\"}, {\"name\": \"isSourceOf\", \"value\": \"isSourceOf\"}, {\"name\": \"isCitedBy\", \"value\": \"isCitedBy\"}, {\"name\": \"Cites\", \"value\": \"Cites\"}, {\"name\": \"inSeries\", \"value\": \"inSeries\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation Type\", \"ja\": \"関連タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_select\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ARK\", \"value\": \"ARK\"}, {\"name\": \"arXiv\", \"value\": \"arXiv\"}, {\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"ICHUSHI\", \"value\": \"ICHUSHI\"}, {\"name\": \"ISBN\", \"value\": \"ISBN\"}, {\"name\": \"J-GLOBAL\", \"value\": \"J-GLOBAL\"}, {\"name\": \"Local\", \"value\": \"Local\"}, {\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN【非推奨】\", \"value\": \"ISSN\"}, {\"name\": \"NAID【非推奨】\", \"value\": \"NAID\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}, {\"name\": \"PURL\", \"value\": \"PURL\"}, {\"name\": \"SCOPUS\", \"value\": \"SCOPUS\"}, {\"name\": \"URI\", \"value\": \"URI\"}, {\"name\": \"WOS\", \"value\": \"WOS\"}, {\"name\": \"CRID\", \"value\": \"CRID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_id_text\", \"type\": \"text\", \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429[].subitem_relation_name\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_text\", \"type\": \"text\", \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Relation\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation\", \"ja\": \"関連情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186859717\", \"items\": [{\"key\": \"item_1617186859717[].subitem_temporal_text\", \"type\": \"text\", \"title\": \"時間的範囲\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186859717[].subitem_temporal_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Temporal\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_longitude\", \"type\": \"text\", \"title\": \"経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Longitude\", \"ja\": \"経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_latitude\", \"type\": \"text\", \"title\": \"緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Latitude\", \"ja\": \"緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(点)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Point\", \"ja\": \"位置情報(点)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_west_longitude\", \"type\": \"text\", \"title\": \"西部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"West Bound Longitude\", \"ja\": \"西部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_east_longitude\", \"type\": \"text\", \"title\": \"東部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"East Bound Longitude\", \"ja\": \"東部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_south_latitude\", \"type\": \"text\", \"title\": \"南部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"South Bound Latitude\", \"ja\": \"南部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_north_latitude\", \"type\": \"text\", \"title\": \"北部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"North Bound Latitude\", \"ja\": \"北部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(空間)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Box\", \"ja\": \"位置情報(空間)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738[].subitem_geolocation_place\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_place[].subitem_geolocation_place_text\", \"type\": \"text\", \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Geo Location\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location\", \"ja\": \"位置情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type\", \"type\": \"select\", \"title\": \"助成機関識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"e-Rad_funder\", \"value\": \"e-Rad_funder\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type\", \"ja\": \"助成機関識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier\", \"type\": \"text\", \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type_uri\", \"type\": \"text\", \"title\": \"助成機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type URI\", \"ja\": \"助成機関識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funder_names\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name\", \"type\": \"text\", \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type\", \"type\": \"select\", \"title\": \"プログラム情報識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"JGN_fundingStream\", \"value\": \"JGN_fundingStream\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type\", \"ja\": \"プログラム情報識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier\", \"type\": \"text\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type_uri\", \"type\": \"text\", \"title\": \"プログラム情報識別子タイプURI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type URI\", \"ja\": \"プログラム情報識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"プログラム情報識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifiers\", \"ja\": \"プログラム情報識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funding_streams\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_streams.subitem_funding_stream\", \"type\": \"text\", \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_streams[].subitem_funding_stream_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Streams\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number_type\", \"type\": \"select\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JGN\", \"value\": \"JGN\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number Type\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number\", \"type\": \"text\", \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_uri\", \"type\": \"text\", \"title\": \"研究課題番号URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number URI\", \"ja\": \"研究課題番号URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_award_titles\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title\", \"type\": \"text\", \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Funding Reference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder\", \"ja\": \"助成情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186920753\", \"items\": [{\"key\": \"item_1617186920753[].subitem_source_identifier_type\", \"type\": \"select\", \"title\": \"収録物識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN\", \"value\": \"ISSN\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier Type\", \"ja\": \"収録物識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186920753[].subitem_source_identifier\", \"type\": \"text\", \"title\": \"収録物識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186941041\", \"items\": [{\"key\": \"item_1617186941041[].subitem_source_title\", \"type\": \"text\", \"title\": \"収録物名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186941041[].subitem_source_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186959569\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186959569.subitem_volume\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Volume Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186981471\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186981471.subitem_issue\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Issue Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186994930\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186994930.subitem_number_of_pages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Number of Pages\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187024783\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187024783.subitem_start_page\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page Start\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187045071\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187045071.subitem_end_page\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page End\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187056579.bibliographic_titles\", \"items\": [{\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_titleLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"雑誌名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Journal Title\", \"ja\": \"雑誌名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicVolumeNumber\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Number\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueNumber\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Number\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageStart\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page Start\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageEnd\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page End\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicNumberOfPages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Page\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDate\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"\", \"value\": \"\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"発行日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Date\", \"ja\": \"発行日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Bibliographic Information\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Bibliographic Information\", \"ja\": \"書誌情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187087799\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187087799.subitem_dissertationnumber\", \"type\": \"text\", \"title\": \"学位授与番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Dissertation Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187112279\", \"items\": [{\"key\": \"item_1617187112279[].subitem_degreename\", \"type\": \"text\", \"title\": \"学位名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187112279[].subitem_degreename_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187136212\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187136212.subitem_dategranted\", \"type\": \"template\", \"title\": \"学位授与年月日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Date Granted\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor_identifier\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_scheme\", \"type\": \"select\", \"title\": \"学位授与機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier Scheme\", \"ja\": \"学位授与機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_name\", \"type\": \"text\", \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_name\", \"type\": \"text\", \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Grantor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor\", \"ja\": \"学位授与機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_names\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name\", \"type\": \"text\", \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sequence\", \"type\": \"text\", \"title\": \"回次\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sequence\", \"ja\": \"回次\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_sponsors\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor\", \"type\": \"text\", \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_year\", \"type\": \"text\", \"title\": \"開始年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Year\", \"ja\": \"開始年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_month\", \"type\": \"text\", \"title\": \"開始月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Month\", \"ja\": \"開始月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_day\", \"type\": \"text\", \"title\": \"開始日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Day\", \"ja\": \"開始日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_year\", \"type\": \"text\", \"title\": \"終了年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Year\", \"ja\": \"終了年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_month\", \"type\": \"text\", \"title\": \"終了月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Month\", \"ja\": \"終了月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_day\", \"type\": \"text\", \"title\": \"終了日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Day\", \"ja\": \"終了日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_period\", \"type\": \"text\", \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_venues\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue\", \"type\": \"text\", \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_places\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place\", \"type\": \"text\", \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_country\", \"type\": \"select\", \"title\": \"開催国\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JPN\", \"value\": \"JPN\"}, {\"name\": \"ABW\", \"value\": \"ABW\"}, {\"name\": \"AFG\", \"value\": \"AFG\"}, {\"name\": \"AGO\", \"value\": \"AGO\"}, {\"name\": \"AIA\", \"value\": \"AIA\"}, {\"name\": \"ALA\", \"value\": \"ALA\"}, {\"name\": \"ALB\", \"value\": \"ALB\"}, {\"name\": \"AND\", \"value\": \"AND\"}, {\"name\": \"ARE\", \"value\": \"ARE\"}, {\"name\": \"ARG\", \"value\": \"ARG\"}, {\"name\": \"ARM\", \"value\": \"ARM\"}, {\"name\": \"ASM\", \"value\": \"ASM\"}, {\"name\": \"ATA\", \"value\": \"ATA\"}, {\"name\": \"ATF\", \"value\": \"ATF\"}, {\"name\": \"ATG\", \"value\": \"ATG\"}, {\"name\": \"AUS\", \"value\": \"AUS\"}, {\"name\": \"AUT\", \"value\": \"AUT\"}, {\"name\": \"AZE\", \"value\": \"AZE\"}, {\"name\": \"BDI\", \"value\": \"BDI\"}, {\"name\": \"BEL\", \"value\": \"BEL\"}, {\"name\": \"BEN\", \"value\": \"BEN\"}, {\"name\": \"BES\", \"value\": \"BES\"}, {\"name\": \"BFA\", \"value\": \"BFA\"}, {\"name\": \"BGD\", \"value\": \"BGD\"}, {\"name\": \"BGR\", \"value\": \"BGR\"}, {\"name\": \"BHR\", \"value\": \"BHR\"}, {\"name\": \"BHS\", \"value\": \"BHS\"}, {\"name\": \"BIH\", \"value\": \"BIH\"}, {\"name\": \"BLM\", \"value\": \"BLM\"}, {\"name\": \"BLR\", \"value\": \"BLR\"}, {\"name\": \"BLZ\", \"value\": \"BLZ\"}, {\"name\": \"BMU\", \"value\": \"BMU\"}, {\"name\": \"BOL\", \"value\": \"BOL\"}, {\"name\": \"BRA\", \"value\": \"BRA\"}, {\"name\": \"BRB\", \"value\": \"BRB\"}, {\"name\": \"BRN\", \"value\": \"BRN\"}, {\"name\": \"BTN\", \"value\": \"BTN\"}, {\"name\": \"BVT\", \"value\": \"BVT\"}, {\"name\": \"BWA\", \"value\": \"BWA\"}, {\"name\": \"CAF\", \"value\": \"CAF\"}, {\"name\": \"CAN\", \"value\": \"CAN\"}, {\"name\": \"CCK\", \"value\": \"CCK\"}, {\"name\": \"CHE\", \"value\": \"CHE\"}, {\"name\": \"CHL\", \"value\": \"CHL\"}, {\"name\": \"CHN\", \"value\": \"CHN\"}, {\"name\": \"CIV\", \"value\": \"CIV\"}, {\"name\": \"CMR\", \"value\": \"CMR\"}, {\"name\": \"COD\", \"value\": \"COD\"}, {\"name\": \"COG\", \"value\": \"COG\"}, {\"name\": \"COK\", \"value\": \"COK\"}, {\"name\": \"COL\", \"value\": \"COL\"}, {\"name\": \"COM\", \"value\": \"COM\"}, {\"name\": \"CPV\", \"value\": \"CPV\"}, {\"name\": \"CRI\", \"value\": \"CRI\"}, {\"name\": \"CUB\", \"value\": \"CUB\"}, {\"name\": \"CUW\", \"value\": \"CUW\"}, {\"name\": \"CXR\", \"value\": \"CXR\"}, {\"name\": \"CYM\", \"value\": \"CYM\"}, {\"name\": \"CYP\", \"value\": \"CYP\"}, {\"name\": \"CZE\", \"value\": \"CZE\"}, {\"name\": \"DEU\", \"value\": \"DEU\"}, {\"name\": \"DJI\", \"value\": \"DJI\"}, {\"name\": \"DMA\", \"value\": \"DMA\"}, {\"name\": \"DNK\", \"value\": \"DNK\"}, {\"name\": \"DOM\", \"value\": \"DOM\"}, {\"name\": \"DZA\", \"value\": \"DZA\"}, {\"name\": \"ECU\", \"value\": \"ECU\"}, {\"name\": \"EGY\", \"value\": \"EGY\"}, {\"name\": \"ERI\", \"value\": \"ERI\"}, {\"name\": \"ESH\", \"value\": \"ESH\"}, {\"name\": \"ESP\", \"value\": \"ESP\"}, {\"name\": \"EST\", \"value\": \"EST\"}, {\"name\": \"ETH\", \"value\": \"ETH\"}, {\"name\": \"FIN\", \"value\": \"FIN\"}, {\"name\": \"FJI\", \"value\": \"FJI\"}, {\"name\": \"FLK\", \"value\": \"FLK\"}, {\"name\": \"FRA\", \"value\": \"FRA\"}, {\"name\": \"FRO\", \"value\": \"FRO\"}, {\"name\": \"FSM\", \"value\": \"FSM\"}, {\"name\": \"GAB\", \"value\": \"GAB\"}, {\"name\": \"GBR\", \"value\": \"GBR\"}, {\"name\": \"GEO\", \"value\": \"GEO\"}, {\"name\": \"GGY\", \"value\": \"GGY\"}, {\"name\": \"GHA\", \"value\": \"GHA\"}, {\"name\": \"GIB\", \"value\": \"GIB\"}, {\"name\": \"GIN\", \"value\": \"GIN\"}, {\"name\": \"GLP\", \"value\": \"GLP\"}, {\"name\": \"GMB\", \"value\": \"GMB\"}, {\"name\": \"GNB\", \"value\": \"GNB\"}, {\"name\": \"GNQ\", \"value\": \"GNQ\"}, {\"name\": \"GRC\", \"value\": \"GRC\"}, {\"name\": \"GRD\", \"value\": \"GRD\"}, {\"name\": \"GRL\", \"value\": \"GRL\"}, {\"name\": \"GTM\", \"value\": \"GTM\"}, {\"name\": \"GUF\", \"value\": \"GUF\"}, {\"name\": \"GUM\", \"value\": \"GUM\"}, {\"name\": \"GUY\", \"value\": \"GUY\"}, {\"name\": \"HKG\", \"value\": \"HKG\"}, {\"name\": \"HMD\", \"value\": \"HMD\"}, {\"name\": \"HND\", \"value\": \"HND\"}, {\"name\": \"HRV\", \"value\": \"HRV\"}, {\"name\": \"HTI\", \"value\": \"HTI\"}, {\"name\": \"HUN\", \"value\": \"HUN\"}, {\"name\": \"IDN\", \"value\": \"IDN\"}, {\"name\": \"IMN\", \"value\": \"IMN\"}, {\"name\": \"IND\", \"value\": \"IND\"}, {\"name\": \"IOT\", \"value\": \"IOT\"}, {\"name\": \"IRL\", \"value\": \"IRL\"}, {\"name\": \"IRN\", \"value\": \"IRN\"}, {\"name\": \"IRQ\", \"value\": \"IRQ\"}, {\"name\": \"ISL\", \"value\": \"ISL\"}, {\"name\": \"ISR\", \"value\": \"ISR\"}, {\"name\": \"ITA\", \"value\": \"ITA\"}, {\"name\": \"JAM\", \"value\": \"JAM\"}, {\"name\": \"JEY\", \"value\": \"JEY\"}, {\"name\": \"JOR\", \"value\": \"JOR\"}, {\"name\": \"KAZ\", \"value\": \"KAZ\"}, {\"name\": \"KEN\", \"value\": \"KEN\"}, {\"name\": \"KGZ\", \"value\": \"KGZ\"}, {\"name\": \"KHM\", \"value\": \"KHM\"}, {\"name\": \"KIR\", \"value\": \"KIR\"}, {\"name\": \"KNA\", \"value\": \"KNA\"}, {\"name\": \"KOR\", \"value\": \"KOR\"}, {\"name\": \"KWT\", \"value\": \"KWT\"}, {\"name\": \"LAO\", \"value\": \"LAO\"}, {\"name\": \"LBN\", \"value\": \"LBN\"}, {\"name\": \"LBR\", \"value\": \"LBR\"}, {\"name\": \"LBY\", \"value\": \"LBY\"}, {\"name\": \"LCA\", \"value\": \"LCA\"}, {\"name\": \"LIE\", \"value\": \"LIE\"}, {\"name\": \"LKA\", \"value\": \"LKA\"}, {\"name\": \"LSO\", \"value\": \"LSO\"}, {\"name\": \"LTU\", \"value\": \"LTU\"}, {\"name\": \"LUX\", \"value\": \"LUX\"}, {\"name\": \"LVA\", \"value\": \"LVA\"}, {\"name\": \"MAC\", \"value\": \"MAC\"}, {\"name\": \"MAF\", \"value\": \"MAF\"}, {\"name\": \"MAR\", \"value\": \"MAR\"}, {\"name\": \"MCO\", \"value\": \"MCO\"}, {\"name\": \"MDA\", \"value\": \"MDA\"}, {\"name\": \"MDG\", \"value\": \"MDG\"}, {\"name\": \"MDV\", \"value\": \"MDV\"}, {\"name\": \"MEX\", \"value\": \"MEX\"}, {\"name\": \"MHL\", \"value\": \"MHL\"}, {\"name\": \"MKD\", \"value\": \"MKD\"}, {\"name\": \"MLI\", \"value\": \"MLI\"}, {\"name\": \"MLT\", \"value\": \"MLT\"}, {\"name\": \"MMR\", \"value\": \"MMR\"}, {\"name\": \"MNE\", \"value\": \"MNE\"}, {\"name\": \"MNG\", \"value\": \"MNG\"}, {\"name\": \"MNP\", \"value\": \"MNP\"}, {\"name\": \"MOZ\", \"value\": \"MOZ\"}, {\"name\": \"MRT\", \"value\": \"MRT\"}, {\"name\": \"MSR\", \"value\": \"MSR\"}, {\"name\": \"MTQ\", \"value\": \"MTQ\"}, {\"name\": \"MUS\", \"value\": \"MUS\"}, {\"name\": \"MWI\", \"value\": \"MWI\"}, {\"name\": \"MYS\", \"value\": \"MYS\"}, {\"name\": \"MYT\", \"value\": \"MYT\"}, {\"name\": \"NAM\", \"value\": \"NAM\"}, {\"name\": \"NCL\", \"value\": \"NCL\"}, {\"name\": \"NER\", \"value\": \"NER\"}, {\"name\": \"NFK\", \"value\": \"NFK\"}, {\"name\": \"NGA\", \"value\": \"NGA\"}, {\"name\": \"NIC\", \"value\": \"NIC\"}, {\"name\": \"NIU\", \"value\": \"NIU\"}, {\"name\": \"NLD\", \"value\": \"NLD\"}, {\"name\": \"NOR\", \"value\": \"NOR\"}, {\"name\": \"NPL\", \"value\": \"NPL\"}, {\"name\": \"NRU\", \"value\": \"NRU\"}, {\"name\": \"NZL\", \"value\": \"NZL\"}, {\"name\": \"OMN\", \"value\": \"OMN\"}, {\"name\": \"PAK\", \"value\": \"PAK\"}, {\"name\": \"PAN\", \"value\": \"PAN\"}, {\"name\": \"PCN\", \"value\": \"PCN\"}, {\"name\": \"PER\", \"value\": \"PER\"}, {\"name\": \"PHL\", \"value\": \"PHL\"}, {\"name\": \"PLW\", \"value\": \"PLW\"}, {\"name\": \"PNG\", \"value\": \"PNG\"}, {\"name\": \"POL\", \"value\": \"POL\"}, {\"name\": \"PRI\", \"value\": \"PRI\"}, {\"name\": \"PRK\", \"value\": \"PRK\"}, {\"name\": \"PRT\", \"value\": \"PRT\"}, {\"name\": \"PRY\", \"value\": \"PRY\"}, {\"name\": \"PSE\", \"value\": \"PSE\"}, {\"name\": \"PYF\", \"value\": \"PYF\"}, {\"name\": \"QAT\", \"value\": \"QAT\"}, {\"name\": \"REU\", \"value\": \"REU\"}, {\"name\": \"ROU\", \"value\": \"ROU\"}, {\"name\": \"RUS\", \"value\": \"RUS\"}, {\"name\": \"RWA\", \"value\": \"RWA\"}, {\"name\": \"SAU\", \"value\": \"SAU\"}, {\"name\": \"SDN\", \"value\": \"SDN\"}, {\"name\": \"SEN\", \"value\": \"SEN\"}, {\"name\": \"SGP\", \"value\": \"SGP\"}, {\"name\": \"SGS\", \"value\": \"SGS\"}, {\"name\": \"SHN\", \"value\": \"SHN\"}, {\"name\": \"SJM\", \"value\": \"SJM\"}, {\"name\": \"SLB\", \"value\": \"SLB\"}, {\"name\": \"SLE\", \"value\": \"SLE\"}, {\"name\": \"SLV\", \"value\": \"SLV\"}, {\"name\": \"SMR\", \"value\": \"SMR\"}, {\"name\": \"SOM\", \"value\": \"SOM\"}, {\"name\": \"SPM\", \"value\": \"SPM\"}, {\"name\": \"SRB\", \"value\": \"SRB\"}, {\"name\": \"SSD\", \"value\": \"SSD\"}, {\"name\": \"STP\", \"value\": \"STP\"}, {\"name\": \"SUR\", \"value\": \"SUR\"}, {\"name\": \"SVK\", \"value\": \"SVK\"}, {\"name\": \"SVN\", \"value\": \"SVN\"}, {\"name\": \"SWE\", \"value\": \"SWE\"}, {\"name\": \"SWZ\", \"value\": \"SWZ\"}, {\"name\": \"SXM\", \"value\": \"SXM\"}, {\"name\": \"SYC\", \"value\": \"SYC\"}, {\"name\": \"SYR\", \"value\": \"SYR\"}, {\"name\": \"TCA\", \"value\": \"TCA\"}, {\"name\": \"TCD\", \"value\": \"TCD\"}, {\"name\": \"TGO\", \"value\": \"TGO\"}, {\"name\": \"THA\", \"value\": \"THA\"}, {\"name\": \"TJK\", \"value\": \"TJK\"}, {\"name\": \"TKL\", \"value\": \"TKL\"}, {\"name\": \"TKM\", \"value\": \"TKM\"}, {\"name\": \"TLS\", \"value\": \"TLS\"}, {\"name\": \"TON\", \"value\": \"TON\"}, {\"name\": \"TTO\", \"value\": \"TTO\"}, {\"name\": \"TUN\", \"value\": \"TUN\"}, {\"name\": \"TUR\", \"value\": \"TUR\"}, {\"name\": \"TUV\", \"value\": \"TUV\"}, {\"name\": \"TWN\", \"value\": \"TWN\"}, {\"name\": \"TZA\", \"value\": \"TZA\"}, {\"name\": \"UGA\", \"value\": \"UGA\"}, {\"name\": \"UKR\", \"value\": \"UKR\"}, {\"name\": \"UMI\", \"value\": \"UMI\"}, {\"name\": \"URY\", \"value\": \"URY\"}, {\"name\": \"USA\", \"value\": \"USA\"}, {\"name\": \"UZB\", \"value\": \"UZB\"}, {\"name\": \"VAT\", \"value\": \"VAT\"}, {\"name\": \"VCT\", \"value\": \"VCT\"}, {\"name\": \"VEN\", \"value\": \"VEN\"}, {\"name\": \"VGB\", \"value\": \"VGB\"}, {\"name\": \"VIR\", \"value\": \"VIR\"}, {\"name\": \"VNM\", \"value\": \"VNM\"}, {\"name\": \"VUT\", \"value\": \"VUT\"}, {\"name\": \"WLF\", \"value\": \"WLF\"}, {\"name\": \"WSM\", \"value\": \"WSM\"}, {\"name\": \"YEM\", \"value\": \"YEM\"}, {\"name\": \"ZAF\", \"value\": \"ZAF\"}, {\"name\": \"ZMB\", \"value\": \"ZMB\"}, {\"name\": \"ZWE\", \"value\": \"ZWE\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Country\", \"ja\": \"開催国\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Conference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference\", \"ja\": \"会議記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617620223087\", \"items\": [{\"key\": \"item_1617620223087[].subitem_heading_banner_headline\", \"type\": \"text\", \"title\": \"大見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"大見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_headline\", \"type\": \"text\", \"title\": \"小見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subheading\", \"ja\": \"小見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Heading\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591601\", \"items\": [{\"key\": \"item_1698591601[].original_language\", \"type\": \"text\", \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591602\", \"items\": [{\"key\": \"item_1698591602[].volume_title\", \"type\": \"text\", \"title\": \"Edition\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591602[].volume_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"部編名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_type\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors[].contributor_names\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name\", \"type\": \"text\", \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"提供機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_identifiers\", \"items\": [{\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier_type\", \"type\": \"select\", \"title\": \"Identifier Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier\", \"type\": \"text\", \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_titles\", \"items\": [{\"key\": \"item_1698591603[].catalog_titles[].catalog_title\", \"type\": \"text\", \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_titles[].catalog_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_descriptions\", \"items\": [{\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_type\", \"type\": \"select\", \"title\": \"Description Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description\", \"type\": \"textarea\", \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_subjects\", \"items\": [{\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject\", \"type\": \"text\", \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_scheme\", \"type\": \"select\", \"title\": \"Subject Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_uri\", \"type\": \"text\", \"title\": \"Subject URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_licenses\", \"items\": [{\"key\": \"item_1698591603[].catalog_licenses[].catalog_license\", \"type\": \"text\", \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_type\", \"type\": \"select\", \"title\": \"License Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"file\", \"value\": \"file\"}, {\"name\": \"metadata\", \"value\": \"metadata\"}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_rights[].catalog_right\", \"type\": \"text\", \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_access_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591603[].catalog_file.catalog_file_uri\", \"type\": \"text\", \"title\": \"File URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file.catalog_file_object_type\", \"type\": \"select\", \"title\": \"Object Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"カタログ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Catalog\", \"ja\": \"カタログ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591604\", \"items\": [{\"key\": \"item_1698591604[].jpcoar_format\", \"type\": \"text\", \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591604[].jpcoar_format_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591605\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591605[].jpcoar_dataset_series\", \"type\": \"select\", \"title\": \"Dataset Series\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"True\", \"value\": \"True\"}, {\"name\": \"False\", \"value\": \"False\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"データセットシリーズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591606\", \"items\": [{\"key\": \"item_1698591606[].edition\", \"type\": \"text\", \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591606[].edition_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591607[].holding_agent_names\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name\", \"type\": \"text\", \"title\": \"所蔵機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_value\", \"type\": \"text\", \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_scheme\", \"type\": \"select\", \"title\": \"所蔵機関識別子スキーマ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"FANO\", \"value\": \"FANO\"}, {\"name\": \"ISIL\", \"value\": \"ISIL\"}, {\"name\": \"MARC\", \"value\": \"MARC\"}, {\"name\": \"OCLC\", \"value\": \"OCLC\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_uri\", \"type\": \"text\", \"title\": \"所蔵機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591608\", \"items\": [{\"key\": \"item_1698591608[].subitem_dcterms_date\", \"type\": \"text\", \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591608[].subitem_dcterms_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date(Literal)\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591609\", \"items\": [{\"key\": \"item_1698591609[].dcterms_extent\", \"type\": \"text\", \"title\": \"Extent\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591609[].dcterms_extent_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"大きさ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591610[].publisher_names\", \"items\": [{\"key\": \"item_1698591610[].publisher_names[].publisher_name\", \"type\": \"text\", \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_names[].publisher_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_descriptions\", \"items\": [{\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description\", \"type\": \"text\", \"title\": \"出版者注記\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_locations\", \"items\": [{\"key\": \"item_1698591610[].publisher_locations[].publisher_location\", \"type\": \"text\", \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publication_places\", \"items\": [{\"key\": \"item_1698591610[].publication_places[].publication_place\", \"type\": \"text\", \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Information\", \"ja\": \"出版者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802\", \"items\": [{\"key\": \"item_1718082005802[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"isHide\": false, \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1718082005802[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"file-text-url\", \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"isHide\": false, \"feedback\": false, \"required\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].filesize\", \"items\": [{\"key\": \"item_1718082005802[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].fileDate\", \"items\": [{\"key\": \"item_1718082005802[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].licensetype == ''license_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"isHide\": false, \"default\": \"open_no\", \"required\": false, \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].roles\", \"items\": [{\"key\": \"item_1718082005802[].roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date'' || model.item_1718082005802[arrayIndex].accessrole == ''open_login''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].provide\", \"items\": [{\"key\": \"item_1718082005802[].provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"WorkFlow\", \"ja\": \"ワークフロー\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].terms\", \"type\": \"select\", \"title\": \"利用規約\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted'' && model.item_1718082005802[arrayIndex].terms== ''term_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Restricted File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}], \"name\": \"制限公開2\", \"action\": \"upt\", \"schema\": {\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\", \"item_1617186331708\", \"item_1617258105262\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1698591601\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"original_language\", \"format\": \"object\", \"properties\": {\"original_language\": {\"type\": \"string\", \"title\": \"Original Language\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"原文の言語\"}}}}, \"title\": \"原文の言語\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591602\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"volume_title\", \"format\": \"object\", \"properties\": {\"volume_title\": {\"type\": \"string\", \"title\": \"部編名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}}, \"volume_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"部編名\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591603\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"catalog\", \"format\": \"object\", \"properties\": {\"catalog_file\": {\"type\": \"object\", \"title\": \"File\", \"format\": \"object\", \"properties\": {\"catalog_file_uri\": {\"type\": \"string\", \"title\": \"File URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}}, \"catalog_file_object_type\": {\"enum\": [null, \"thumbnail\"], \"type\": \"string\", \"title\": \"Object Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}}}}, \"catalog_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_right\": {\"type\": \"string\", \"title\": \"Rights\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}}, \"catalog_right_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_right_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"Rights\", \"format\": \"array\"}, \"catalog_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_title\": {\"type\": \"string\", \"title\": \"Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"catalog_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"format\": \"array\"}, \"catalog_licenses\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_license\": {\"type\": \"string\", \"title\": \"License\", \"format\": \"text\", \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, \"catalog_license_type\": {\"enum\": [null, \"file\", \"metadata\", \"thumbnail\"], \"type\": [\"null\", \"string\"], \"title\": \"License Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}}, \"catalog_license_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_license_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"License\", \"format\": \"array\"}, \"catalog_subjects\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_subject\": {\"type\": \"string\", \"title\": \"Subject\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"catalog_subject_uri\": {\"type\": \"string\", \"title\": \"Subject URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"catalog_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Subject Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}}, \"catalog_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"format\": \"array\"}, \"catalog_identifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_identifier\": {\"type\": \"string\", \"title\": \"Identifier\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}}, \"catalog_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"Identifier Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}}}}, \"title\": \"Identifier\", \"format\": \"array\"}, \"catalog_contributors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_type\": {\"enum\": [null, \"HostingInstitution\"], \"type\": [\"null\", \"string\"], \"title\": \"Contributor Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}}, \"contributor_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_name\": {\"type\": \"string\", \"title\": \"Contributor Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}}, \"contributor_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Contributor Name\", \"format\": \"array\"}}}, \"title\": \"Contributor\", \"format\": \"array\"}, \"catalog_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_description\": {\"type\": \"string\", \"title\": \"Description\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}}, \"catalog_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Description Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}}, \"catalog_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}}}}, \"title\": \"Descriptions\", \"format\": \"array\"}, \"catalog_access_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"アクセス権\", \"properties\": {\"catalog_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"catalog_access_right_rdf_resource\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"title\": \"Access Rights\", \"format\": \"array\"}}}, \"title\": \"カタログ\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591604\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"jpcoar_format\", \"format\": \"object\", \"properties\": {\"jpcoar_format\": {\"type\": \"string\", \"title\": \"物理的形態\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}}, \"jpcoar_format_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"物理的形態\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591605\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"データセットシリーズ\", \"format\": \"object\", \"properties\": {\"jpcoar_dataset_series\": {\"enum\": [null, \"True\", \"False\"], \"type\": [\"null\", \"string\"], \"title\": \"Dataset Series\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}}}}, \"title\": \"データセットシリーズ\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591606\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"edition\", \"format\": \"object\", \"properties\": {\"edition\": {\"type\": \"string\", \"title\": \"版\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}}, \"edition_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"版\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"holding_agent_name\", \"format\": \"object\", \"properties\": {\"holding_agent_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"holding_agent_name\": {\"type\": \"string\", \"title\": \"所蔵機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}}, \"holding_agent_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所蔵機関名\", \"format\": \"array\"}, \"holding_agent_name_identifier\": {\"type\": \"object\", \"title\": \"所蔵機関識別子\", \"format\": \"object\", \"properties\": {\"holding_agent_name_identifier_uri\": {\"type\": \"string\", \"title\": \"所蔵機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}}, \"holding_agent_name_identifier_value\": {\"type\": \"string\", \"title\": \"所蔵機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}}, \"holding_agent_name_identifier_scheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"], \"type\": \"string\", \"title\": \"所蔵機関識別子スキーマ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"currentEnum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"]}}}}}, \"title\": \"所蔵機関\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591608\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_date\", \"format\": \"object\", \"properties\": {\"subitem_dcterms_date\": {\"type\": \"string\", \"title\": \"日付(リテラル)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}}, \"subitem_dcterms_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}, \"system_prop\": false}, \"title\": \"日付(リテラル)\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591609\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_extent\", \"format\": \"object\", \"properties\": {\"dcterms_extent\": {\"type\": \"string\", \"title\": \"Extent\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}}, \"dcterms_extent_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"大きさ\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591610\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"publisher_information\", \"format\": \"object\", \"properties\": {\"publisher_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_name\": {\"type\": \"string\", \"title\": \"出版者名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}}, \"publisher_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者名\", \"format\": \"array\"}, \"publication_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publication_place\": {\"type\": \"string\", \"title\": \"出版地(国名コード)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}}}}, \"title\": \"出版地(国名コード)\", \"format\": \"array\"}, \"publisher_locations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_location\": {\"type\": \"string\", \"title\": \"出版地\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}}}}, \"title\": \"出版地\", \"format\": \"array\"}, \"publisher_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_description\": {\"type\": \"string\", \"title\": \"出版者注記\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}}, \"publisher_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者注記\", \"format\": \"array\"}}}, \"title\": \"出版者情報\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186331708\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"subitem_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186385884\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_alternative_title\": {\"type\": \"string\", \"title\": \"その他のタイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}}, \"subitem_alternative_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Alternative Title\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186419668\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"iscreator\": {\"type\": \"string\", \"title\": \"iscreator\", \"format\": \"text\"}, \"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者名\", \"format\": \"array\"}, \"creatorType\": {\"type\": \"string\", \"title\": \"作成者タイプ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者姓\", \"format\": \"array\"}, \"creatorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"作成者メールアドレス\", \"format\": \"array\"}, \"creatorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}, \"creatorNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"creatorNameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"currentEnum\": [\"Personal\", \"Organizational\"]}}}, \"title\": \"作成者姓名\", \"format\": \"array\"}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"作成者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"作成者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"作成者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"IdentifierScheme\", \"ja\": \"作成者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"作成者識別子\", \"format\": \"array\"}, \"creatorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"affiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"affiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}}, \"affiliationNameIdentifierURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"affiliationNameIdentifierScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"作成者所属\", \"format\": \"array\"}, \"creatorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"creatorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Creator\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186476635\": {\"type\": \"object\", \"title\": \"Access Rights\", \"format\": \"object\", \"properties\": {\"subitem_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"subitem_access_right_uri\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"item_1617186499011\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_rights\": {\"type\": \"string\", \"title\": \"権利情報\", \"format\": \"text\"}, \"subitem_rights_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_rights_resource\": {\"type\": \"string\", \"title\": \"権利情報Resource\", \"format\": \"text\"}}}, \"title\": \"Rights\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186609386\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_subject\": {\"type\": \"string\", \"title\": \"主題\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"subitem_subject_uri\": {\"type\": \"string\", \"title\": \"主題URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"subitem_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"主題Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"currentEnum\": [\"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"]}, \"subitem_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186626617\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_description\": {\"type\": \"string\", \"title\": \"内容記述\", \"format\": \"textarea\"}, \"subitem_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"内容記述タイプ\", \"format\": \"select\", \"currentEnum\": [\"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"]}, \"subitem_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Description\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186643794\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_publisher\": {\"type\": \"string\", \"title\": \"出版者\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}}, \"subitem_publisher_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Publisher\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186660861\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_date_issued_type\": {\"enum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"subitem_date_issued_datetime\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}}}, \"title\": \"Date\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186702042\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_language\": {\"enum\": [null, \"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"]}}}, \"title\": \"Language\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186783814\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_identifier_uri\": {\"type\": \"string\", \"title\": \"識別子\", \"format\": \"text\"}, \"subitem_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Identifier\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186819068\": {\"type\": \"object\", \"title\": \"Identifier Registration\", \"format\": \"object\", \"properties\": {\"subitem_identifier_reg_text\": {\"type\": \"string\", \"title\": \"ID登録\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}}, \"subitem_identifier_reg_type\": {\"enum\": [null, \"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"], \"type\": [\"null\", \"string\"], \"title\": \"ID登録タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"currentEnum\": [\"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"]}}}, \"item_1617186859717\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_temporal_text\": {\"type\": \"string\", \"title\": \"時間的範囲\", \"format\": \"text\"}, \"subitem_temporal_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Temporal\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186882738\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_box\": {\"type\": \"object\", \"title\": \"位置情報(空間)\", \"format\": \"object\", \"properties\": {\"subitem_east_longitude\": {\"type\": \"string\", \"title\": \"東部経度\", \"format\": \"text\"}, \"subitem_north_latitude\": {\"type\": \"string\", \"title\": \"北部緯度\", \"format\": \"text\"}, \"subitem_south_latitude\": {\"type\": \"string\", \"title\": \"南部緯度\", \"format\": \"text\"}, \"subitem_west_longitude\": {\"type\": \"string\", \"title\": \"西部経度\", \"format\": \"text\"}}}, \"subitem_geolocation_place\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_place_text\": {\"type\": \"string\", \"title\": \"位置情報(自由記述)\", \"format\": \"text\"}}}, \"title\": \"位置情報(自由記述)\", \"format\": \"array\"}, \"subitem_geolocation_point\": {\"type\": \"object\", \"title\": \"位置情報(点)\", \"format\": \"object\", \"properties\": {\"subitem_point_latitude\": {\"type\": \"string\", \"title\": \"緯度\", \"format\": \"text\"}, \"subitem_point_longitude\": {\"type\": \"string\", \"title\": \"経度\", \"format\": \"text\"}}}}}, \"title\": \"Geo Location\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186901218\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_title\": {\"type\": \"string\", \"title\": \"研究課題名\", \"format\": \"text\"}, \"subitem_award_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"研究課題名\", \"format\": \"array\"}, \"subitem_funder_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funder_name\": {\"type\": \"string\", \"title\": \"助成機関名\", \"format\": \"text\"}, \"subitem_funder_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"助成機関名\", \"format\": \"array\"}, \"subitem_award_numbers\": {\"type\": \"object\", \"title\": \"研究課題番号\", \"format\": \"object\", \"properties\": {\"subitem_award_uri\": {\"type\": \"string\", \"title\": \"研究課題番号URI\", \"format\": \"text\"}, \"subitem_award_number\": {\"type\": \"string\", \"title\": \"研究課題番号\", \"format\": \"text\"}, \"subitem_award_number_type\": {\"enum\": [null, \"JGN\"], \"type\": [\"null\", \"string\"], \"title\": \"研究課題番号タイプ\", \"format\": \"select\"}}}, \"subitem_funding_streams\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream\": {\"type\": \"string\", \"title\": \"プログラム情報\", \"format\": \"text\"}, \"subitem_funding_stream_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"プログラム情報\", \"format\": \"array\"}, \"subitem_funder_identifiers\": {\"type\": \"object\", \"title\": \"助成機関識別子\", \"format\": \"object\", \"properties\": {\"subitem_funder_identifier\": {\"type\": \"string\", \"title\": \"助成機関識別子\", \"format\": \"text\"}, \"subitem_funder_identifier_type\": {\"enum\": [null, \"Crossref Funder\", \"e-Rad_funder\", \"GRID\", \"ISNI\", \"ROR\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"助成機関識別子タイプ\", \"format\": \"select\"}, \"subitem_funder_identifier_type_uri\": {\"type\": \"string\", \"title\": \"助成機関識別子タイプURI\", \"format\": \"text\"}}}, \"subitem_funding_stream_identifiers\": {\"type\": \"object\", \"title\": \"プログラム情報識別子\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream_identifier\": {\"type\": \"string\", \"title\": \"プログラム情報識別子\", \"format\": \"text\"}, \"subitem_funding_stream_identifier_type\": {\"enum\": [\"Crossref Funder\", \"JGN_fundingStream\"], \"type\": [\"null\", \"string\"], \"title\": \"プログラム情報識別子タイプ\", \"format\": \"select\"}, \"subitem_funding_stream_identifier_type_uri\": {\"type\": \"string\", \"title\": \"プログラム情報識別子タイプURI\", \"format\": \"text\"}}}}}, \"title\": \"Funding Reference\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186920753\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_identifier\": {\"type\": \"string\", \"title\": \"収録物識別子\", \"format\": \"text\"}, \"subitem_source_identifier_type\": {\"enum\": [null, \"PISSN\", \"EISSN\", \"ISSN\", \"NCID\"], \"type\": [\"null\", \"string\"], \"title\": \"収録物識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Source Identifier\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186941041\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_title\": {\"type\": \"string\", \"title\": \"収録物名\", \"format\": \"text\"}, \"subitem_source_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Source Title\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186959569\": {\"type\": \"object\", \"title\": \"Volume Number\", \"format\": \"object\", \"properties\": {\"subitem_volume\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}}}}, \"item_1617186981471\": {\"type\": \"object\", \"title\": \"Issue Number\", \"format\": \"object\", \"properties\": {\"subitem_issue\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}}}}, \"item_1617186994930\": {\"type\": \"object\", \"title\": \"Number of Pages\", \"format\": \"object\", \"properties\": {\"subitem_number_of_pages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}}}}, \"item_1617187024783\": {\"type\": \"object\", \"title\": \"Page Start\", \"format\": \"object\", \"properties\": {\"subitem_start_page\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}}}}, \"item_1617187045071\": {\"type\": \"object\", \"title\": \"Page End\", \"format\": \"object\", \"properties\": {\"subitem_end_page\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}}}}, \"item_1617187056579\": {\"type\": \"object\", \"title\": \"Bibliographic Information\", \"format\": \"object\", \"properties\": {\"bibliographicPageEnd\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\"}, \"bibliographic_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"bibliographic_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\"}, \"bibliographic_titleLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"雑誌名\", \"format\": \"array\"}, \"bibliographicPageStart\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\"}, \"bibliographicIssueDates\": {\"type\": \"object\", \"title\": \"発行日\", \"format\": \"object\", \"properties\": {\"bibliographicIssueDate\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}, \"bibliographicIssueDateType\": {\"enum\": [null, \"\", \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"\", \"Issued\"]}}}, \"bibliographicIssueNumber\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\"}, \"bibliographicVolumeNumber\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\"}, \"bibliographicNumberOfPages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1617187087799\": {\"type\": \"object\", \"title\": \"Dissertation Number\", \"format\": \"object\", \"properties\": {\"subitem_dissertationnumber\": {\"type\": \"string\", \"title\": \"学位授与番号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}}}}, \"item_1617187112279\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"学位名\", \"format\": \"object\", \"properties\": {\"subitem_degreename\": {\"type\": \"string\", \"title\": \"学位名\", \"format\": \"text\"}, \"subitem_degreename_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Degree Name\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617187136212\": {\"type\": \"object\", \"title\": \"Date Granted\", \"format\": \"object\", \"properties\": {\"subitem_dategranted\": {\"type\": \"string\", \"title\": \"学位授与年月日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}}}}, \"item_1617187187528\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_date\": {\"type\": \"object\", \"title\": \"開催期間\", \"format\": \"object\", \"properties\": {\"subitem_conference_period\": {\"type\": \"string\", \"title\": \"開催期間\", \"format\": \"text\"}, \"subitem_conference_end_day\": {\"type\": \"string\", \"title\": \"終了日\", \"format\": \"text\"}, \"subitem_conference_end_year\": {\"type\": \"string\", \"title\": \"終了年\", \"format\": \"text\"}, \"subitem_conference_end_month\": {\"type\": \"string\", \"title\": \"終了月\", \"format\": \"text\"}, \"subitem_conference_start_day\": {\"type\": \"string\", \"title\": \"開始日\", \"format\": \"text\"}, \"subitem_conference_start_year\": {\"type\": \"string\", \"title\": \"開始年\", \"format\": \"text\"}, \"subitem_conference_start_month\": {\"type\": \"string\", \"title\": \"開始月\", \"format\": \"text\"}, \"subitem_conference_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"subitem_conference_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_name\": {\"type\": \"string\", \"title\": \"会議名\", \"format\": \"text\"}, \"subitem_conference_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"会議名\", \"format\": \"array\"}, \"subitem_conference_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_place\": {\"type\": \"string\", \"title\": \"開催地\", \"format\": \"text\"}, \"subitem_conference_place_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催地\", \"format\": \"array\"}, \"subitem_conference_venues\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_venue\": {\"type\": \"string\", \"title\": \"開催会場\", \"format\": \"text\"}, \"subitem_conference_venue_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催会場\", \"format\": \"array\"}, \"subitem_conference_country\": {\"enum\": [null, \"JPN\", \"ABW\", \"AFG\", \"AGO\", \"AIA\", \"ALA\", \"ALB\", \"AND\", \"ARE\", \"ARG\", \"ARM\", \"ASM\", \"ATA\", \"ATF\", \"ATG\", \"AUS\", \"AUT\", \"AZE\", \"BDI\", \"BEL\", \"BEN\", \"BES\", \"BFA\", \"BGD\", \"BGR\", \"BHR\", \"BHS\", \"BIH\", \"BLM\", \"BLR\", \"BLZ\", \"BMU\", \"BOL\", \"BRA\", \"BRB\", \"BRN\", \"BTN\", \"BVT\", \"BWA\", \"CAF\", \"CAN\", \"CCK\", \"CHE\", \"CHL\", \"CHN\", \"CIV\", \"CMR\", \"COD\", \"COG\", \"COK\", \"COL\", \"COM\", \"CPV\", \"CRI\", \"CUB\", \"CUW\", \"CXR\", \"CYM\", \"CYP\", \"CZE\", \"DEU\", \"DJI\", \"DMA\", \"DNK\", \"DOM\", \"DZA\", \"ECU\", \"EGY\", \"ERI\", \"ESH\", \"ESP\", \"EST\", \"ETH\", \"FIN\", \"FJI\", \"FLK\", \"FRA\", \"FRO\", \"FSM\", \"GAB\", \"GBR\", \"GEO\", \"GGY\", \"GHA\", \"GIB\", \"GIN\", \"GLP\", \"GMB\", \"GNB\", \"GNQ\", \"GRC\", \"GRD\", \"GRL\", \"GTM\", \"GUF\", \"GUM\", \"GUY\", \"HKG\", \"HMD\", \"HND\", \"HRV\", \"HTI\", \"HUN\", \"IDN\", \"IMN\", \"IND\", \"IOT\", \"IRL\", \"IRN\", \"IRQ\", \"ISL\", \"ISR\", \"ITA\", \"JAM\", \"JEY\", \"JOR\", \"KAZ\", \"KEN\", \"KGZ\", \"KHM\", \"KIR\", \"KNA\", \"KOR\", \"KWT\", \"LAO\", \"LBN\", \"LBR\", \"LBY\", \"LCA\", \"LIE\", \"LKA\", \"LSO\", \"LTU\", \"LUX\", \"LVA\", \"MAC\", \"MAF\", \"MAR\", \"MCO\", \"MDA\", \"MDG\", \"MDV\", \"MEX\", \"MHL\", \"MKD\", \"MLI\", \"MLT\", \"MMR\", \"MNE\", \"MNG\", \"MNP\", \"MOZ\", \"MRT\", \"MSR\", \"MTQ\", \"MUS\", \"MWI\", \"MYS\", \"MYT\", \"NAM\", \"NCL\", \"NER\", \"NFK\", \"NGA\", \"NIC\", \"NIU\", \"NLD\", \"NOR\", \"NPL\", \"NRU\", \"NZL\", \"OMN\", \"PAK\", \"PAN\", \"PCN\", \"PER\", \"PHL\", \"PLW\", \"PNG\", \"POL\", \"PRI\", \"PRK\", \"PRT\", \"PRY\", \"PSE\", \"PYF\", \"QAT\", \"REU\", \"ROU\", \"RUS\", \"RWA\", \"SAU\", \"SDN\", \"SEN\", \"SGP\", \"SGS\", \"SHN\", \"SJM\", \"SLB\", \"SLE\", \"SLV\", \"SMR\", \"SOM\", \"SPM\", \"SRB\", \"SSD\", \"STP\", \"SUR\", \"SVK\", \"SVN\", \"SWE\", \"SWZ\", \"SXM\", \"SYC\", \"SYR\", \"TCA\", \"TCD\", \"TGO\", \"THA\", \"TJK\", \"TKL\", \"TKM\", \"TLS\", \"TON\", \"TTO\", \"TUN\", \"TUR\", \"TUV\", \"TWN\", \"TZA\", \"UGA\", \"UKR\", \"UMI\", \"URY\", \"USA\", \"UZB\", \"VAT\", \"VCT\", \"VEN\", \"VGB\", \"VIR\", \"VNM\", \"VUT\", \"WLF\", \"WSM\", \"YEM\", \"ZAF\", \"ZMB\", \"ZWE\"], \"type\": [\"null\", \"string\"], \"title\": \"開催国\", \"format\": \"select\"}, \"subitem_conference_sequence\": {\"type\": \"string\", \"title\": \"回次\", \"format\": \"text\"}, \"subitem_conference_sponsors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_sponsor\": {\"type\": \"string\", \"title\": \"主催機関\", \"format\": \"text\"}, \"subitem_conference_sponsor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"主催機関\", \"format\": \"array\"}}}, \"title\": \"Conference\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617258105262\": {\"type\": \"object\", \"title\": \"Resource Type\", \"format\": \"object\", \"properties\": {\"resourceuri\": {\"type\": \"string\", \"title\": \"資源タイプ識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}}, \"resourcetype\": {\"enum\": [null, \"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"資源タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"currentEnum\": [\"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"]}}, \"system_prop\": true}, \"item_1617265215918\": {\"type\": \"object\", \"title\": \"Version Type\", \"format\": \"object\", \"properties\": {\"subitem_version_type\": {\"enum\": [null, \"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"], \"type\": [\"null\", \"string\"], \"title\": \"出版タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"currentEnum\": [\"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"]}, \"subitem_peer_reviewed\": {\"enum\": [null, \"Peer reviewed\", \"Not peer reviewed\"], \"type\": [\"null\", \"string\"], \"title\": \"査読の有無\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"currentEnum\": [\"Peer reviewed\", \"Not peer reviewed\"]}, \"subitem_version_resource\": {\"type\": \"string\", \"title\": \"出版タイプResource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}}}, \"system_prop\": true}, \"item_1617349709064\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者名\", \"format\": \"array\"}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者姓\", \"format\": \"array\"}, \"contributorType\": {\"enum\": [null, \"ContactPerson\", \"DataCollector\", \"DataCurator\", \"DataManager\", \"Distributor\", \"Editor\", \"HostingInstitution\", \"Producer\", \"ProjectLeader\", \"ProjectManager\", \"ProjectMember\", \"RelatedPerson\", \"Researcher\", \"ResearchGroup\", \"Sponsor\", \"Supervisor\", \"WorkPackageLeader\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"寄与者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"寄与者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"寄与者識別子\", \"format\": \"array\"}, \"contributorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"寄与者メールアドレス\", \"format\": \"array\"}, \"contributorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"lang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"nameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"editAble\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}}, \"contributorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}}}, \"title\": \"寄与者姓名\", \"format\": \"array\"}, \"contributorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"contributorAffiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"contributorAffiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"contributorAffiliationScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"currentEnum\": [\"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"]}, \"contributorAffiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"寄与者所属\", \"format\": \"array\"}, \"contributorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"contributorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Contributor\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617349808926\": {\"type\": \"object\", \"title\": \"Version\", \"format\": \"object\", \"properties\": {\"subitem_version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}}}}, \"item_1617351524846\": {\"type\": \"object\", \"title\": \"APC\", \"format\": \"object\", \"properties\": {\"subitem_apc\": {\"enum\": [null, \"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"], \"type\": [\"null\", \"string\"], \"title\": \"APC\", \"format\": \"select\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"currentEnum\": [\"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"]}}}, \"item_1617353299429\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name_text\": {\"type\": \"string\", \"title\": \"関連名称\", \"format\": \"text\"}, \"subitem_relation_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"関連名称\", \"format\": \"array\"}, \"subitem_relation_type\": {\"enum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"], \"type\": [\"null\", \"string\"], \"title\": \"関連タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"]}, \"subitem_relation_type_id\": {\"type\": \"object\", \"title\": \"関連識別子\", \"format\": \"object\", \"properties\": {\"subitem_relation_type_select\": {\"enum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"]}, \"subitem_relation_type_id_text\": {\"type\": \"string\", \"title\": \"関連識別子\", \"format\": \"text\"}}}}}, \"title\": \"Relation\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617610673286\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"権利者識別子\", \"format\": \"text\"}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"権利者識別子URI\", \"format\": \"text\"}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"権利者識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"権利者識別子\", \"format\": \"array\"}, \"rightHolderNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"rightHolderName\": {\"type\": \"string\", \"title\": \"権利者名\", \"format\": \"text\"}, \"rightHolderLanguage\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"権利者名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Rights Holder\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617620223087\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_heading_headline\": {\"type\": \"string\", \"title\": \"小見出し\", \"format\": \"text\"}, \"subitem_heading_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_heading_banner_headline\": {\"type\": \"string\", \"title\": \"大見出し\", \"format\": \"text\"}}, \"system_prop\": true}, \"title\": \"Heading\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617944105607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_name\": {\"type\": \"string\", \"title\": \"学位授与機関名\", \"format\": \"text\"}, \"subitem_degreegrantor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"学位授与機関名\", \"format\": \"array\"}, \"subitem_degreegrantor_identifier\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_identifier_name\": {\"type\": \"string\", \"title\": \"学位授与機関識別子\", \"format\": \"text\"}, \"subitem_degreegrantor_identifier_scheme\": {\"enum\": [null, \"kakenhi\"], \"type\": [\"null\", \"string\"], \"title\": \"学位授与機関識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"学位授与機関識別子\", \"format\": \"array\"}}}, \"title\": \"Degree Grantor\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1718082005802\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\", \"currentEnum\": []}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\", \"currentEnum\": []}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_no\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"Restricted File\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}}, \"description\": \"\"}, \"mapping\": {\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}}, \"item_1698591601\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"originalLanguage\": {\"@value\": \"original_language\", \"@attributes\": {\"xml:lang\": \"original_language_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"originalLanguage\": {\"@value\": \"original_language\", \"@attributes\": {\"xml:lang\": \"original_language_language\"}}}}, \"item_1698591602\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"volumeTitle\": {\"@value\": \"volume_title\", \"@attributes\": {\"xml:lang\": \"volume_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"volumeTitle\": {\"@value\": \"volume_title\", \"@attributes\": {\"xml:lang\": \"volume_title_language\"}}}}, \"item_1698591603\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"catalog\": {\"file\": {\"URI\": {\"@value\": \"catalog_file.catalog_file_uri\", \"@attributes\": {\"objectType\": \"catalog_file.catalog_file_object_type\"}}}, \"title\": {\"@value\": \"catalog_titles.catalog_title\", \"@attributes\": {\"xml:lang\": \"catalog_titles.catalog_title_language\"}}, \"rights\": {\"@value\": \"catalog_rights.catalog_rights_right\", \"@attributes\": {\"xml:lang\": \"catalog_rights.catalog_right_language\", \"rdf:resource\": \"catalog_rights.catalog_right_rdf_resource\"}}, \"license\": {\"@value\": \"catalog_licenses.catalog_license\", \"@attributes\": {\"xml:lang\": \"catalog_licenses.catalog_license_language\", \"licenseType\": \"catalog_licenses.catalog_license_type\", \"rdf:resource\": \"catalog_licenses.catalog_license_rdf_resource\"}}, \"subject\": {\"@value\": \"catalog_subjects.catalog_subject\", \"@attributes\": {\"xml:lang\": \"catalog_subjects.catalog_subject_language\", \"subjectURI\": \"catalog_subjects.catalog_subject_uri\", \"subjectScheme\": \"catalog_subjects.catalog_subject_scheme\"}}, \"identifier\": {\"@value\": \"catalog_identifiers.catalog_identifier\", \"@attributes\": {\"identifierType\": \"catalog_identifiers.catalog_identifier_type\"}}, \"contributor\": {\"@attributes\": {\"contributorType\": \"catalog_contributors.contributor_type\"}, \"contributorName\": {\"@value\": \"catalog_contributors.contributor_names.contributor_name\", \"@attributes\": {\"xml:lang\": \"catalog_contributors.contributor_names.contributor_name_language\"}}}, \"description\": {\"@value\": \"catalog_descriptions.catalog_description\", \"@attributes\": {\"xml:lang\": \"catalog_descriptions.catalog_description_language\", \"descriptionType\": \"catalog_descriptions.catalog_description_type\"}}, \"accessRights\": {\"@value\": \"catalog_access_rights.catalog_access_right\", \"@attributes\": {\"rdf:resource\": \"catalog_access_rights.catalog_access_right_rdf_resource\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"catalog\": {\"file\": {\"URI\": {\"@value\": \"catalog_file.catalog_file_uri\", \"@attributes\": {\"objectType\": \"catalog_file.catalog_file_object_type\"}}}, \"title\": {\"@value\": \"catalog_titles.catalog_title\", \"@attributes\": {\"xml:lang\": \"catalog_titles.catalog_title_language\"}}, \"rights\": {\"@value\": \"catalog_rights.catalog_rights_right\", \"@attributes\": {\"xml:lang\": \"catalog_rights.catalog_right_language\", \"rdf:resource\": \"catalog_rights.catalog_right_rdf_resource\"}}, \"license\": {\"@value\": \"catalog_licenses.catalog_license\", \"@attributes\": {\"xml:lang\": \"catalog_licenses.catalog_license_language\", \"licenseType\": \"catalog_licenses.catalog_license_type\", \"rdf:resource\": \"catalog_licenses.catalog_license_rdf_resource\"}}, \"subject\": {\"@value\": \"catalog_subjects.catalog_subject\", \"@attributes\": {\"xml:lang\": \"catalog_subjects.catalog_subject_language\", \"subjectURI\": \"catalog_subjects.catalog_subject_uri\", \"subjectScheme\": \"catalog_subjects.catalog_subject_scheme\"}}, \"identifier\": {\"@value\": \"catalog_identifiers.catalog_identifier\", \"@attributes\": {\"identifierType\": \"catalog_identifiers.catalog_identifier_type\"}}, \"contributor\": {\"@attributes\": {\"contributorType\": \"catalog_contributors.contributor_type\"}, \"contributorName\": {\"@value\": \"catalog_contributors.contributor_names.contributor_name\", \"@attributes\": {\"xml:lang\": \"catalog_contributors.contributor_names.contributor_name_language\"}}}, \"description\": {\"@value\": \"catalog_descriptions.catalog_description\", \"@attributes\": {\"xml:lang\": \"catalog_descriptions.catalog_description_language\", \"descriptionType\": \"catalog_descriptions.catalog_description_type\"}}, \"accessRights\": {\"@value\": \"catalog_access_rights.catalog_access_right\", \"@attributes\": {\"rdf:resource\": \"catalog_access_rights.catalog_access_right_rdf_resource\"}}}}}, \"item_1698591604\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"format\": {\"@value\": \"jpcoar_format\", \"@attributes\": {\"xml:lang\": \"jpcoar_format_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"format\": {\"@value\": \"jpcoar_format\", \"@attributes\": {\"xml:lang\": \"jpcoar_format_language\"}}}}, \"item_1698591605\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"datasetSeries\": {\"@value\": \"jpcoar_dataset_series\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"datasetSeries\": {\"@value\": \"jpcoar_dataset_series\"}}}, \"item_1698591606\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"edition\": {\"@value\": \"edition\", \"@attributes\": {\"xml:lang\": \"edition_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"edition\": {\"@value\": \"edition\", \"@attributes\": {\"xml:lang\": \"edition_language\"}}}}, \"item_1698591607\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"holdingAgent\": {\"holdingAgentName\": {\"@value\": \"holding_agent_names.holding_agent_name\", \"@attributes\": {\"xml:lang\": \"holding_agent_names.holding_agent_name_language\"}}, \"holdingAgentNameIdentifier\": {\"@value\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_value\", \"@attributes\": {\"nameIdentifierURI\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_uri\", \"nameIdentifierScheme\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_scheme\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"holdingAgent\": {\"holdingAgentName\": {\"@value\": \"holding_agent_names.holding_agent_name\", \"@attributes\": {\"xml:lang\": \"holding_agent_names.holding_agent_name_language\"}}, \"holdingAgentNameIdentifier\": {\"@value\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_value\", \"@attributes\": {\"nameIdentifierURI\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_uri\", \"nameIdentifierScheme\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_scheme\"}}}}}, \"item_1698591608\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date_dcterms\": {\"@value\": \"subitem_dcterms_date\", \"@attributes\": {\"xml:lang\": \"subitem_dcterms_date_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_dcterms_date\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date_dcterms\": {\"@value\": \"subitem_dcterms_date\", \"@attributes\": {\"xml:lang\": \"subitem_dcterms_date_language\"}}}}, \"item_1698591609\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"extent\": {\"@value\": \"dcterms_extent\", \"@attributes\": {\"xml:lang\": \"dcterms_extent_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"extent\": {\"@value\": \"dcterms_extent\", \"@attributes\": {\"xml:lang\": \"dcterms_extent_language\"}}}}, \"item_1698591610\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"publisher_jpcoar\": {\"location\": {\"@value\": \"publisher_locations.publisher_location\"}, \"publisherName\": {\"@value\": \"publisher_names.publisher_name\", \"@attributes\": {\"xml:lang\": \"publisher_names.publisher_name_language\"}}, \"publicationPlace\": {\"@value\": \"publication_places.publication_place\"}, \"publisherDescription\": {\"@value\": \"publisher_descriptions.publisher_description\", \"@attributes\": {\"xml:lang\": \"publisher_descriptions.publisher_description_language\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"publisher_jpcoar\": {\"location\": {\"@value\": \"publisher_locations.publisher_location\"}, \"publisherName\": {\"@value\": \"publisher_names.publisher_name\", \"@attributes\": {\"xml:lang\": \"publisher_names.publisher_name_language\"}}, \"publicationPlace\": {\"@value\": \"publication_places.publication_place\"}, \"publisherDescription\": {\"@value\": \"publisher_descriptions.publisher_description\", \"@attributes\": {\"xml:lang\": \"publisher_descriptions.publisher_description_language\"}}}}}, \"item_1617186331708\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_title\", \"@attributes\": {\"xml:lang\": \"subitem_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"title\": {\"@value\": \"subitem_title\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"title\": {\"@value\": \"subitem_title\", \"@attributes\": {\"xml:lang\": \"subitem_title_language\"}}}}, \"item_1617186385884\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_alternative_title\", \"@attributes\": {\"xml:lang\": \"subitem_alternative_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"title\": {\"@value\": \"subitem_alternative_title\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"alternative\": {\"@value\": \"subitem_alternative_title\", \"@attributes\": {\"xml:lang\": \"subitem_alternative_title_language\"}}}}, \"item_1617186419668\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierURI\", \"nameIdentifierScheme\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierScheme\"}}, \"affiliationName\": {\"@value\": \"creatorAffiliations.affiliationNames.affiliationName\", \"@attributes\": {\"xml:lang\": \"creatorAffiliations.affiliationNames.affiliationNameLang\"}}}, \"creatorName\": {\"@value\": \"creatorNames.creatorName\", \"@attributes\": {\"xml:lang\": \"creatorNames.creatorNameLang\"}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"creatorAlternative\": {\"@value\": \"creatorAlternatives.creatorAlternative\", \"@attributes\": {\"xml:lang\": \"creatorAlternatives.creatorAlternativeLang\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"creator\": {\"@value\": \"creatorNames.creatorName,nameIdentifiers.nameIdentifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"creator\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierURI\", \"nameIdentifierScheme\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierScheme\"}}, \"affiliationName\": {\"@value\": \"creatorAffiliations.affiliationNames.affiliationName\", \"@attributes\": {\"xml:lang\": \"creatorAffiliations.affiliationNames.affiliationNameLang\"}}}, \"creatorName\": {\"@value\": \"creatorNames.creatorName\", \"@attributes\": {\"xml:lang\": \"creatorNames.creatorNameLang\"}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"creatorAlternative\": {\"@value\": \"creatorAlternatives.creatorAlternative\", \"@attributes\": {\"xml:lang\": \"creatorAlternatives.creatorAlternativeLang\"}}}}}, \"item_1617186476635\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"accessRights\": {\"@value\": \"subitem_access_right\", \"@attributes\": {\"rdf:resource\": \"subitem_access_right_uri\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"rights\": {\"@value\": \"subitem_access_right\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"accessRights\": {\"@value\": \"subitem_access_right\", \"@attributes\": {\"rdf:resource\": \"subitem_access_right_uri\"}}}}, \"item_1617186499011\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"rights\": {\"@value\": \"subitem_rights\", \"@attributes\": {\"xml:lang\": \"subitem_rights_language\", \"rdf:resource\": \"subitem_rights_resource\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"rights\": {\"@value\": \"subitem_rights\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"rights\": {\"@value\": \"subitem_rights\", \"@attributes\": {\"xml:lang\": \"subitem_rights_language\", \"rdf:resource\": \"subitem_rights_resource\"}}}}, \"item_1617186609386\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"subject\": {\"@value\": \"subitem_subject\", \"@attributes\": {\"xml:lang\": \"subitem_subject_language\", \"subjectURI\": \"subitem_subject_uri\", \"subjectScheme\": \"subitem_subject_scheme\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"subject\": {\"@value\": \"subitem_subject\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"subject\": {\"@value\": \"subitem_subject\", \"@attributes\": {\"xml:lang\": \"subitem_subject_language\", \"subjectURI\": \"subitem_subject_uri\", \"subjectScheme\": \"subitem_subject_scheme\"}}}}, \"item_1617186626617\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"description\": {\"@value\": \"subitem_description\", \"@attributes\": {\"xml:lang\": \"subitem_description_language\", \"descriptionType\": \"subitem_description_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_description\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"description\": {\"@value\": \"subitem_description\", \"@attributes\": {\"xml:lang\": \"subitem_description_language\", \"descriptionType\": \"subitem_description_type\"}}}}, \"item_1617186643794\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\", \"@attributes\": {\"xml:lang\": \"subitem_publisher\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\", \"@attributes\": {\"xml:lang\": \"subitem_publisher\"}}}}, \"item_1617186660861\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\", \"@attributes\": {\"dateType\": \"subitem_date_issued_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\", \"@attributes\": {\"dateType\": \"subitem_date_issued_type\"}}}}, \"item_1617186702042\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}}, \"item_1617186783814\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\", \"@attributes\": {\"identifierType\": \"subitem_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\", \"@attributes\": {\"identifierType\": \"subitem_identifier_type\"}}}}, \"item_1617186819068\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifierRegistration\": {\"@value\": \"subitem_identifier_reg_text\", \"@attributes\": {\"identifierType\": \"subitem_identifier_reg_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifierRegistration\": {\"@value\": \"subitem_identifier_reg_text\", \"@attributes\": {\"identifierType\": \"subitem_identifier_reg_type\"}}}}, \"item_1617186859717\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"temporal\": {\"@value\": \"subitem_temporal_text\", \"@attributes\": {\"xml:lang\": \"subitem_temporal_languag\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"coverage\": {\"@value\": \"subitem_temporal_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"temporal\": {\"@value\": \"subitem_temporal_text\", \"@attributes\": {\"xml:lang\": \"subitem_temporal_languag\"}}}}, \"item_1617186882738\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"geoLocation\": {\"geoLocationBox\": {\"eastBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_east_longitude\"}, \"northBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_north_latitude\"}, \"southBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_south_latitude\"}, \"westBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_west_longitude\"}}, \"geoLocationPlace\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}, \"geoLocationPoint\": {\"pointLatitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_latitude\"}, \"pointLongitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_longitude\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"coverage\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"geoLocation\": {\"geoLocationBox\": {\"eastBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_east_longitude\"}, \"northBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_north_latitude\"}, \"southBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_south_latitude\"}, \"westBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_west_longitude\"}}, \"geoLocationPlace\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}, \"geoLocationPoint\": {\"pointLatitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_latitude\"}, \"pointLongitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_longitude\"}}}}}, \"item_1617186901218\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"fundingReference\": {\"awardTitle\": {\"@value\": \"subitem_award_titles.subitem_award_title\", \"@attributes\": {\"xml:lang\": \"subitem_award_titles.subitem_award_title_language\"}}, \"funderName\": {\"@value\": \"subitem_funder_names.subitem_funder_name\", \"@attributes\": {\"xml:lang\": \"subitem_funder_names.subitem_funder_name_language\"}}, \"awardNumber\": {\"@value\": \"subitem_award_numbers.subitem_award_number\", \"@attributes\": {\"awardURI\": \"subitem_award_numbers.subitem_1522399585738\"}}, \"funderIdentifier\": {\"@value\": \"subitem_funder_identifiers.subitem_funder_identifier\", \"@attributes\": {\"funderIdentifierType\": \"subitem_funder_identifiers.subitem_funder_identifier_type\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"fundingReference\": {\"awardTitle\": {\"@value\": \"subitem_award_titles.subitem_award_title\", \"@attributes\": {\"xml:lang\": \"subitem_award_titles.subitem_award_title_language\"}}, \"funderName\": {\"@value\": \"subitem_funder_names.subitem_funder_name\", \"@attributes\": {\"xml:lang\": \"subitem_funder_names.subitem_funder_name_language\"}}, \"awardNumber\": {\"@value\": \"subitem_award_numbers.subitem_award_number\", \"@attributes\": {\"awardURI\": \"subitem_award_numbers.subitem_1522399585738\"}}, \"funderIdentifier\": {\"@value\": \"subitem_funder_identifiers.subitem_funder_identifier\", \"@attributes\": {\"funderIdentifierType\": \"subitem_funder_identifiers.subitem_funder_identifier_type\"}}}}}, \"item_1617186920753\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"sourceIdentifier\": {\"@value\": \"subitem_source_identifier\", \"@attributes\": {\"identifierType\": \"subitem_source_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_source_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"sourceIdentifier\": {\"@value\": \"subitem_source_identifier\", \"@attributes\": {\"identifierType\": \"subitem_source_identifier_type\"}}}}, \"item_1617186941041\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"sourceTitle\": {\"@value\": \"subitem_record_name\", \"@attributes\": {\"xml:lang\": \"subitem_record_name_languag\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_record_name\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"sourceTitle\": {\"@value\": \"subitem_record_name\", \"@attributes\": {\"xml:lang\": \"subitem_record_name_languag\"}}}}, \"item_1617186959569\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"volume\": {\"@value\": \"subitem_volume\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_volume\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"volume\": {\"@value\": \"subitem_volume\"}}}, \"item_1617186981471\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"issue\": {\"@value\": \"subitem_issue\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_issue\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"issue\": {\"@value\": \"subitem_issue\"}}}, \"item_1617186994930\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"numPages\": {\"@value\": \"subitem_number_of_pages\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_number_of_pages\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"numPages\": {\"@value\": \"subitem_number_of_pages\"}}}, \"item_1617187024783\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"pageStart\": {\"@value\": \"subitem_start_page\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_start_page\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"pageStart\": {\"@value\": \"subitem_start_page\"}}}, \"item_1617187045071\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"pageEnd\": {\"@value\": \"subitem_end_page\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_end_page\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"pageEnd\": {\"@value\": \"subitem_end_page\"}}}, \"item_1617187056579\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\", \"@attributes\": {\"dateType\": \"bibliographicIssueDates.bibliographicIssueDateType\"}}, \"issue\": {\"@value\": \"bibliographicIssueNumber\"}, \"volume\": {\"@value\": \"bibliographicVolumeNumber\"}, \"pageEnd\": {\"@value\": \"bibliographicPageEnd\"}, \"numPages\": {\"@value\": \"bibliographicNumberOfPages\"}, \"pageStart\": {\"@value\": \"bibliographicPageStart\"}, \"sourceTitle\": {\"@value\": \"bibliographic_titles.bibliographic_title\", \"@attributes\": {\"xml:lang\": \"bibliographic_titles.bibliographic_titleLang\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\"}, \"identifier\": {\"@value\": \"bibliographic_titles.bibliographic_title,bibliographicIssueNumber,bibliographicVolumeNumber,bibliographicPageEnd,bibliographicPageStart\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\", \"@attributes\": {\"dateType\": \"bibliographicIssueDates.bibliographicIssueDateType\"}}, \"issue\": {\"@value\": \"bibliographicIssueNumber\"}, \"volume\": {\"@value\": \"bibliographicVolumeNumber\"}, \"pageEnd\": {\"@value\": \"bibliographicPageEnd\"}, \"numPages\": {\"@value\": \"bibliographicNumberOfPages\"}, \"pageStart\": {\"@value\": \"bibliographicPageStart\"}, \"sourceTitle\": {\"@value\": \"bibliographic_titles.bibliographic_title\", \"@attributes\": {\"xml:lang\": \"bibliographic_titles.bibliographic_titleLang\"}}}}, \"item_1617187087799\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"dissertationNumber\": {\"@value\": \"subitem_dissertationnumber\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_dissertationnumber\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"dissertationNumber\": {\"@value\": \"subitem_dissertationnumber\"}}}, \"item_1617187112279\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"degreeName\": {\"@value\": \"subitem_degreename\", \"@attributes\": {\"xml:lang\": \"subitem_degreename_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_degreename\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"degreeName\": {\"@value\": \"subitem_degreename\", \"@attributes\": {\"xml:lang\": \"subitem_degreename_language\"}}}}, \"item_1617187136212\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"dateGranted\": {\"@value\": \"subitem_dategranted\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_dategranted\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"dateGranted\": {\"@value\": \"subitem_dategranted\"}}}, \"item_1617187187528\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"conference\": {\"conferenceDate\": {\"@value\": \"subitem_conference_date.subitem_conference_period\", \"@attributes\": {\"endDay\": \"subitem_conference_date.subitem_conference_end_day\", \"endYear\": \"subitem_conference_date.subitem_conference_end_year\", \"endMonth\": \"subitem_conference_date.subitem_conference_end_month\", \"startDay\": \"subitem_conference_date.subitem_conference_start_day\", \"xml:lang\": \"subitem_conference_date.subitem_conference_date_language\", \"startYear\": \"subitem_conference_date.subitem_conference_start_year\", \"startMonth\": \"subitem_conference_date.subitem_conference_start_month\"}}, \"conferenceName\": {\"@value\": \"subitem_conference_names.subitem_conference_name\", \"@attributes\": {\"xml:lang\": \"subitem_conference_names.subitem_conference_name_language\"}}, \"conferenceVenue\": {\"@value\": \"subitem_conference_venues.subitem_conference_venue\", \"@attributes\": {\"xml:lang\": \"subitem_conference_venues.subitem_conference_venue_language\"}}, \"conferenceCountry\": {\"@value\": \"subitem_conference_country\"}, \"conferenceSponsor\": {\"@value\": \"subitem_conference_sponsors.subitem_conference_sponsor\", \"@attributes\": {\"xml:lang\": \"subitem_conference_sponsors.subitem_conference_sponsor_language\"}}, \"conferenceSequence\": {\"@value\": \"subitem_conference_sequence\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"conference\": {\"conferenceDate\": {\"@value\": \"subitem_conference_date.subitem_conference_period\", \"@attributes\": {\"endDay\": \"subitem_conference_date.subitem_conference_end_day\", \"endYear\": \"subitem_conference_date.subitem_conference_end_year\", \"endMonth\": \"subitem_conference_date.subitem_conference_end_month\", \"startDay\": \"subitem_conference_date.subitem_conference_start_day\", \"xml:lang\": \"subitem_conference_date.subitem_conference_date_language\", \"startYear\": \"subitem_conference_date.subitem_conference_start_year\", \"startMonth\": \"subitem_conference_date.subitem_conference_start_month\"}}, \"conferenceName\": {\"@value\": \"subitem_conference_names.subitem_conference_name\", \"@attributes\": {\"xml:lang\": \"subitem_conference_names.subitem_conference_name_language\"}}, \"conferenceVenue\": {\"@value\": \"subitem_conference_venues.subitem_conference_venue\", \"@attributes\": {\"xml:lang\": \"subitem_conference_venues.subitem_conference_venue_language\"}}, \"conferenceCountry\": {\"@value\": \"subitem_conference_country\"}, \"conferenceSponsor\": {\"@value\": \"subitem_conference_sponsors.subitem_conference_sponsor\", \"@attributes\": {\"xml:lang\": \"subitem_conference_sponsors.subitem_conference_sponsor_language\"}}, \"conferenceSequence\": {\"@value\": \"subitem_conference_sequence\"}}}}, \"item_1617258105262\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"type\": {\"@value\": \"resourcetype\", \"@attributes\": {\"rdf:resource\": \"resourceuri\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"resourceuri\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"type\": {\"@value\": \"resourcetype\", \"@attributes\": {\"rdf:resource\": \"resourceuri\"}}}}, \"item_1617265215918\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"versiontype\": {\"@value\": \"subitem_version_type\", \"@attributes\": {\"rdf:resource\": \"subitem_version_resource\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"type\": {\"@value\": \"subitem_version_type\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"versiontype\": {\"@value\": \"subitem_version_type\", \"@attributes\": {\"rdf:resource\": \"subitem_version_resource\"}}}}, \"item_1617349709064\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"contributor\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"@attributes\": {\"contributorType\": \"contributorType\"}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationURI\", \"nameIdentifierScheme\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationScheme\"}}, \"affiliationName\": {\"@value\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationName\", \"@attributes\": {\"xml:lang\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationNameLang\"}}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"contributorName\": {\"@value\": \"contributorNames.contributorName\", \"@attributes\": {\"xml:lang\": \"contributorNames.lang\"}}, \"contributorAlternative\": {\"@value\": \"contributorAlternatives.contributorAlternative\", \"@attributes\": {\"xml:lang\": \"contributorAlternatives.contributorAlternativeLang\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"contributor\": {\"@value\": \"contributorNames.contributorName,nameIdentifiers.nameIdentifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"contributor\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"@attributes\": {\"contributorType\": \"contributorType\"}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationURI\", \"nameIdentifierScheme\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationScheme\"}}, \"affiliationName\": {\"@value\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationName\", \"@attributes\": {\"xml:lang\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationNameLang\"}}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"contributorName\": {\"@value\": \"contributorNames.contributorName\", \"@attributes\": {\"xml:lang\": \"contributorNames.lang\"}}, \"contributorAlternative\": {\"@value\": \"contributorAlternatives.contributorAlternative\", \"@attributes\": {\"xml:lang\": \"contributorAlternatives.contributorAlternativeLang\"}}}}}, \"item_1617349808926\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"version\": {\"@value\": \"subitem_version\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"version\": {\"@value\": \"subitem_version\"}}}, \"item_1617351524846\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"apc\": {\"@value\": \"subitem_apc\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"apc\": {\"@value\": \"subitem_apc\"}}}, \"item_1617353299429\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"relation\": {\"@attributes\": {\"relationType\": \"subitem_relation_type\"}, \"relatedTitle\": {\"@value\": \"subitem_relation_name.subitem_relation_name_text\", \"@attributes\": {\"xml:lang\": \"subitem_relation_name.subitem_relation_name_language\"}}, \"relatedIdentifier\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text\", \"@attributes\": {\"identifierType\": \"subitem_relation_type_id.subitem_relation_type_select\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"relation\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text,subitem_relation_name.subitem_relation_name_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"relation\": {\"@attributes\": {\"relationType\": \"subitem_relation_type\"}, \"relatedTitle\": {\"@value\": \"subitem_relation_name.subitem_relation_name_text\", \"@attributes\": {\"xml:lang\": \"subitem_relation_name.subitem_relation_name_language\"}}, \"relatedIdentifier\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text\", \"@attributes\": {\"identifierType\": \"subitem_relation_type_id.subitem_relation_type_select\"}}}}}, \"item_1617610673286\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"rightsHolder\": {\"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"rightsHolderName\": {\"@value\": \"rightHolderNames.rightHolderName\", \"@attributes\": {\"xml:lang\": \"rightHolderNames.rightHolderLanguage\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"rightsHolder\": {\"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"rightsHolderName\": {\"@value\": \"rightHolderNames.rightHolderName\", \"@attributes\": {\"xml:lang\": \"rightHolderNames.rightHolderLanguage\"}}}}}, \"item_1617620223087\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"item_1617944105607\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"degreeGrantor\": {\"nameIdentifier\": {\"@value\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_name\", \"@attributes\": {\"nameIdentifierScheme\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_scheme\"}}, \"degreeGrantorName\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\", \"@attributes\": {\"xml:lang\": \"subitem_degreegrantor.subitem_degreegrantor_language\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"degreeGrantor\": {\"nameIdentifier\": {\"@value\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_name\", \"@attributes\": {\"nameIdentifierScheme\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_scheme\"}}, \"degreeGrantorName\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\", \"@attributes\": {\"xml:lang\": \"subitem_degreegrantor.subitem_degreegrantor_language\"}}}}}, \"item_1718082005802\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"file\": {\"URI\": {\"@value\": \"url.url\", \"@attributes\": {\"label\": \"url.label\", \"objectType\": \"url.objectType\"}}, \"date\": {\"@value\": \"fileDate.fileDateValue\", \"@attributes\": {\"dateType\": \"fileDate.fileDateType\"}}, \"extent\": {\"@value\": \"filesize.value\"}, \"version\": {\"@value\": \"version\"}, \"mimeType\": {\"@value\": \"format\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"system_identifier_doi\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}, \"system_identifier_hdl\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}, \"system_identifier_uri\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}}}}", + "tag": 1, + "version_id": 3, + "is_deleted": false + } + ], + "item_type_property": [ + { + "id": 30015, + "name": "制限公開用のコンテンツファイル", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"enum\": [], \"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\"}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_no\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"enum\": [], \"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\"}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\"}, {\"key\": \"parentkey.url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"disableSuccessState\": true}, {\"key\": \"parentkey.url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"parentkey.url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"parentkey.format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"parentkey.filesize\", \"items\": [{\"key\": \"parentkey.filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"parentkey.fileDate\", \"items\": [{\"key\": \"parentkey.fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"parentkey.fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"parentkey.version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"parentkey.displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"parentkey.licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"parentkey[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey.licensetype == ''license_free''\"}, {\"key\": \"parentkey.accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"default\": \"open_no\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"parentkey.accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date''\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"parentkey.roles\", \"items\": [{\"key\": \"parentkey.roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": []}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date'' || model.parentkey[arrayIndex].accessrole == ''open_login''\"}, {\"add\": \"New\", \"key\": \"parentkey.provide\", \"items\": [{\"key\": \"parentkey.provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": []}, {\"key\": \"parentkey.provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"titleMap\": []}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"condition\": \"model.parentkey.accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}}, {\"key\": \"parentkey.terms\", \"type\": \"select\", \"title\": \"利用規約\", \"titleMap\": [], \"condition\": \"model.parentkey.accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}}, {\"key\": \"parentkey.termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey.accessrole == ''open_restricted'' && model.parentkey.terms== ''term_free''\"}], \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\"}, {\"key\": \"parentkey[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"disableSuccessState\": true}, {\"key\": \"parentkey[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"parentkey[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"parentkey[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"parentkey[].filesize\", \"items\": [{\"key\": \"parentkey[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"parentkey[].fileDate\", \"items\": [{\"key\": \"parentkey[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}, {\"key\": \"parentkey[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"parentkey[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"parentkey[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"parentkey[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"parentkey[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey[arrayIndex].licensetype == ''license_free''\"}, {\"key\": \"parentkey[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"default\": \"open_no\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"parentkey[].accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"parentkey[].roles\", \"items\": [{\"key\": \"parentkey[].roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"titleMap\": [], \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date'' || model.parentkey[arrayIndex].accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}}, {\"add\": \"New\", \"key\": \"parentkey[].provide\", \"items\": [{\"key\": \"parentkey[].provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"titleMap\": [], \"title_i18n\": {\"en\": \"WorkFlow\", \"ja\": \"ワークフロー\"}}, {\"key\": \"parentkey[].provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}}, {\"key\": \"parentkey[].terms\", \"type\": \"select\", \"title\": \"利用規約\", \"titleMap\": [], \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}}, {\"key\": \"parentkey[].termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_restricted'' && model.parentkey[arrayIndex].terms== ''term_free''\"}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}}", + "delflg": false, + "sort": null + } + ], + "admin_settings": { + "name": "restricted_access", + "settings": { + "password_enable": false, + "item_application": { + "item_application_enable": false + }, + "display_request_form": false, + "secret_URL_file_download": { + "secret_enable": false + }, + "edit_mail_templates_enable": false, + "preview_workflow_approval_enable": false + } + } +} \ No newline at end of file diff --git a/tools/switch_restricted_access/enable/get_target_table_hash.sql b/tools/switch_restricted_access/enable/get_target_table_hash.sql new file mode 100644 index 0000000000..6c2796ab5f --- /dev/null +++ b/tools/switch_restricted_access/enable/get_target_table_hash.sql @@ -0,0 +1,213 @@ +SELECT * +FROM ( + SELECT 'item_type_name' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type_name + ) t + UNION ALL + SELECT 'item_type' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type + ) t + UNION ALL + SELECT 'item_type_mapping' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type_mapping + ) t + UNION ALL + SELECT 'item_type_property' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type_property + ) t + UNION ALL + SELECT 'accounts_role' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM accounts_role + ) t + UNION ALL + SELECT 'index' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM index + ) t + UNION ALL + SELECT 'workflow_flow_define' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_flow_define + ) t + UNION ALL + SELECT 'workflow_flow_action' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_flow_action + ) t + UNION ALL + SELECT 'workflow_workflow' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_workflow + ) t + UNION ALL + SELECT 'workflow_userrole' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_userrole + ) t + UNION ALL + SELECT 'mail_template_genres' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM mail_template_genres + ) t + UNION ALL + SELECT 'mail_templates' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM mail_templates + ) t + UNION ALL + SELECT 'admin_settings' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM admin_settings + ) t + UNION ALL + SELECT 'item_type_edit_history' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM item_type_edit_history + ) t + UNION ALL + SELECT 'jsonld_mappings' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM jsonld_mappings + ) t + UNION ALL + SELECT 'rocrate_mapping' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM rocrate_mapping + ) t + UNION ALL + SELECT 'access_actionsroles' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM access_actionsroles + ) t + UNION ALL + SELECT 'accounts_userrole' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM accounts_userrole + ) t + UNION ALL + SELECT 'communities_community' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM communities_community + ) t + UNION ALL + SELECT 'shibboleth_userrole' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM shibboleth_userrole + ) t + UNION ALL + SELECT 'workflow_flow_action_role' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_flow_action_role + ) t + UNION ALL + SELECT 'harvest_settings' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM harvest_settings + ) t + UNION ALL + SELECT 'journal' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM journal + ) t + UNION ALL + SELECT 'resync_indexes' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM resync_indexes + ) t + UNION ALL + SELECT 'workflow_activity' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_activity + ) t + UNION ALL + SELECT 'sword_clients' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM sword_clients + ) t + UNION ALL + SELECT 'mail_template_users' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM mail_template_users + ) t + UNION ALL + SELECT 'author_affiliation_community_relations' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM author_affiliation_community_relations + ) t + UNION ALL + SELECT 'author_community_relations' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM author_community_relations + ) t + UNION ALL + SELECT 'author_prefix_community_relations' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM author_prefix_community_relations + ) t + UNION ALL + SELECT 'communities_community_record' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM communities_community_record + ) t + UNION ALL + SELECT 'communities_featured_community' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM communities_featured_community + ) t + UNION ALL + SELECT 'user_activity_logs' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM user_activity_logs + ) t + UNION ALL + SELECT 'resync_logs' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM resync_logs + ) t + UNION ALL + SELECT 'workflow_activity_action' AS table_name, + md5(STRING_AGG(t::text, ',' ORDER BY t::text)) AS hash + FROM ( + SELECT * FROM workflow_activity_action + ) t +) s +ORDER BY table_name; diff --git a/tools/switch_restricted_access/enable/verify_table.json b/tools/switch_restricted_access/enable/verify_table.json new file mode 100644 index 0000000000..a0edb31710 --- /dev/null +++ b/tools/switch_restricted_access/enable/verify_table.json @@ -0,0 +1,795 @@ +{ + "item_type_name": [ + { + "id": 31001, + "name": "利用申請", + "has_site_license": false, + "is_active": true + }, + { + "id": 31002, + "name": "二段階利用申請", + "has_site_license": false, + "is_active": true + }, + { + "id": 31003, + "name": "利用報告-Data Usage Report", + "has_site_license": false, + "is_active": true + }, + { + "id": 31004, + "name": "制限公開用アイテムタイプ", + "has_site_license": false, + "is_active": true + } + ], + "item_type": [ + { + "id": 31001, + "name_id": 31001, + "harvesting_type": false, + "schema": "{\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1616221831877\": {\"type\": \"object\", \"title\": \"Dataset Usage\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"title\": \"Applicant\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221894659\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"subitem_restricted_access_institution_name\": {\"type\": \"string\", \"title\": \"Institution Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, \"subitem_restricted_access_institution_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Institution Position\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Applicant Affiliated Institution\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616221921931\": {\"type\": \"object\", \"title\": \"Usage Report ID\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221941275\": {\"type\": \"object\", \"title\": \"Research Title\", \"properties\": {\"subitem_restricted_access_research_title\": {\"type\": \"string\", \"title\": \"Research Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"title\": \"Research Plan\", \"properties\": {\"subitem_restricted_access_research_plan\": {\"type\": \"string\", \"title\": \"Research Plan\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, \"subitem_restricted_access_research_plan_type\": {\"enum\": [null, \"Abstract\"], \"type\": [\"null\", \"string\"], \"title\": \"Research Plan Type\", \"format\": \"select\", \"default\": \"Abstract\", \"currentEnum\": [\"Abstract\"]}}}, \"item_1616221987611\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"date\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"dateType\": {\"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": []}, \"dateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"オープンアクセスの日付\", \"format\": \"array\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, \"groups\": {\"type\": [\"null\", \"string\"], \"title\": \"グループ\", \"format\": \"select\", \"currentEnum\": []}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": [\"null\", \"string\"], \"title\": \"表示名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス\", \"format\": \"radios\"}, \"displaytype\": {\"enum\": [null, \"detail\", \"simple\", \"preview\"], \"type\": [\"null\", \"string\"], \"title\": \"表示形式\", \"format\": \"select\", \"currentEnum\": [\"detail\", \"simple\", \"preview\"]}, \"licensefree\": {\"type\": \"string\", \"title\": \"自由ライセンス\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, \"licensetype\": {\"type\": [\"null\", \"string\"], \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Co-user List\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616222047122\": {\"type\": \"object\", \"title\": \"WF Issued Date\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"title\": \"Application Date\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"title\": \"Approval Date\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"title\": \"Item Title\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}}, \"description\": \"\"}", + "form": "[{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221831877\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221831877.subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}, {\"key\": \"item_1616221851421\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221851421.subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221851421.subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221851421.subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221851421.subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221851421.subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221851421.subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221851421.subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Applicant\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}, {\"add\": \"New\", \"key\": \"item_1616221894659\", \"items\": [{\"key\": \"item_1616221894659[].subitem_restricted_access_institution_name\", \"type\": \"text\", \"title\": \"Institution Name\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, {\"key\": \"item_1616221894659[].subitem_restricted_access_institution_position\", \"type\": \"select\", \"title\": \"Institution Position\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}, \"title_i18n_temp\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Applicant Affiliated Institution\", \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}}, {\"key\": \"item_1616221921931\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221921931.subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}}, {\"key\": \"item_1616221941275\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221941275.subitem_restricted_access_research_title\", \"type\": \"text\", \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}], \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}, {\"key\": \"item_1616221960771\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221960771.subitem_restricted_access_research_plan\", \"type\": \"textarea\", \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"key\": \"item_1616221960771.subitem_restricted_access_research_plan_type\", \"type\": \"select\", \"title\": \"Research Plan Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}, \"title_i18n_temp\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}}], \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611\", \"items\": [{\"key\": \"item_1616221987611[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"fieldHtmlClass\": \"file-name\", \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, {\"key\": \"item_1616221987611[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221987611[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"title_i18n_temp\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"item_1616221987611[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].filesize\", \"items\": [{\"key\": \"item_1616221987611[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].fileDate\", \"items\": [{\"key\": \"item_1616221987611[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"title_i18n_temp\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"item_1616221987611[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"item_1616221987611[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"item_1616221987611[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"title_i18n_temp\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"item_1616221987611[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"title_i18n_temp\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"item_1616221987611[].licensefree\", \"type\": \"textarea\", \"notitle\": true, \"condition\": \"model.item_1616221987611[arrayIndex].licensetype == ''license_free''\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, {\"type\": \"template\", \"title\": \"剽窃チェック\", \"template\": \"
{{ form.title }}
\", \"title_i18n\": {\"en\": \"Check Plagiarism\", \"ja\": \"剽窃チェック\"}}, {\"key\": \"item_1616221987611[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"title_i18n_temp\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"item_1616221987611[].date[0].dateValue\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221987611[].groups\", \"type\": \"select\", \"title\": \"グループ\", \"titleMap\": [], \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Group\", \"ja\": \"グループ\"}, \"title_i18n_temp\": {\"en\": \"Group\", \"ja\": \"グループ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Co-user List\", \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}}, {\"key\": \"item_1616222047122\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"title\": \"WF Issued Date\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222067301\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222067301.subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222067301.subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}, \"title_i18n_temp\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"title\": \"Application Date\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222093486\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222093486.subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222093486.subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ \"}, \"title_i18n_temp\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ\"}}], \"title\": \"Approval Date\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222117209\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222117209.subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}]", + "render": "{\"meta_fix\": {\"pubdate\": {\"title\": \"PubDate\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": true, \"showlist\": false}, \"input_type\": \"datetime\", \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"input_value\": \"\"}}, \"meta_list\": {\"item_1616221831877\": {\"title\": \"Dataset Usage\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30001\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221851421\": {\"title\": \"Applicant\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30002\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221894659\": {\"title\": \"Applicant Affiliated Institution\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30003\", \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221921931\": {\"title\": \"Usage Report ID\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30005\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221941275\": {\"title\": \"Research Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30006\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221960771\": {\"title\": \"Research Plan\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30007\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221987611\": {\"title\": \"Co-user List\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30008\", \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222047122\": {\"title\": \"WF Issued Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30011\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222067301\": {\"title\": \"Application Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30012\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222093486\": {\"title\": \"Approval Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30013\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222117209\": {\"title\": \"Item Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30014\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}}, \"table_row\": [\"item_1616221831877\", \"item_1616221851421\", \"item_1616221894659\", \"item_1616221921931\", \"item_1616221941275\", \"item_1616221960771\", \"item_1616221987611\", \"item_1616222047122\", \"item_1616222067301\", \"item_1616222093486\", \"item_1616222117209\"], \"edit_notes\": {\"item_1616221831877\": \"\", \"item_1616221851421\": \"\", \"item_1616221894659\": \"\", \"item_1616221921931\": \"\", \"item_1616221941275\": \"\", \"item_1616221960771\": \"\", \"item_1616221987611\": \"\", \"item_1616222047122\": \"\", \"item_1616222067301\": \"\", \"item_1616222093486\": \"\", \"item_1616222117209\": \"\"}, \"meta_system\": {\"system_file\": {\"title\": \"File Information\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_131\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}, \"input_value\": \"\"}, \"system_identifier_doi\": {\"title\": \"Persistent Identifier(DOI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}, \"input_value\": \"\"}, \"system_identifier_hdl\": {\"title\": \"Persistent Identifier(HDL)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}, \"input_value\": \"\"}, \"system_identifier_uri\": {\"title\": \"Persistent Identifier(URI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}, \"input_value\": \"\"}}, \"upload_file\": false, \"schemaeditor\": {\"schema\": {\"item_1616221831877\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221894659\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_institution_name\": {\"type\": \"string\", \"title\": \"Institution Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, \"subitem_restricted_access_institution_position\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"Institution Position\", \"format\": \"select\", \"currentEnum\": []}}}, \"item_1616221921931\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221941275\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_research_title\": {\"type\": \"string\", \"title\": \"Research Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_research_plan\": {\"type\": \"string\", \"title\": \"Research Plan\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, \"subitem_restricted_access_research_plan_type\": {\"enum\": [null, \"Abstract\"], \"type\": [\"null\", \"string\"], \"title\": \"Research Plan Type\", \"format\": \"select\", \"default\": \"Abstract\", \"currentEnum\": [\"Abstract\"]}}}, \"item_1616221987611\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"date\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"dateType\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": []}, \"dateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"オープンアクセスの日付\", \"format\": \"array\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, \"groups\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"グループ\", \"format\": \"select\", \"currentEnum\": []}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"表示名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス\", \"format\": \"radios\"}, \"displaytype\": {\"enum\": [null, \"detail\", \"simple\", \"preview\"], \"type\": [\"null\", \"string\"], \"title\": \"表示形式\", \"format\": \"select\", \"currentEnum\": [\"detail\", \"simple\", \"preview\"]}, \"licensefree\": {\"type\": \"string\", \"title\": \"自由ライセンス\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, \"licensetype\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}}}, \"item_1616222047122\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}}}, \"table_row_map\": {\"form\": [{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221831877\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221831877.subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}, {\"key\": \"item_1616221851421\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221851421.subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221851421.subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221851421.subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221851421.subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221851421.subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221851421.subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221851421.subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Applicant\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}, {\"add\": \"New\", \"key\": \"item_1616221894659\", \"items\": [{\"key\": \"item_1616221894659[].subitem_restricted_access_institution_name\", \"type\": \"text\", \"title\": \"Institution Name\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, {\"key\": \"item_1616221894659[].subitem_restricted_access_institution_position\", \"type\": \"select\", \"title\": \"Institution Position\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}, \"title_i18n_temp\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Applicant Affiliated Institution\", \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}}, {\"key\": \"item_1616221921931\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221921931.subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}}, {\"key\": \"item_1616221941275\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221941275.subitem_restricted_access_research_title\", \"type\": \"text\", \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}], \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}, {\"key\": \"item_1616221960771\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221960771.subitem_restricted_access_research_plan\", \"type\": \"textarea\", \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"key\": \"item_1616221960771.subitem_restricted_access_research_plan_type\", \"type\": \"select\", \"title\": \"Research Plan Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}, \"title_i18n_temp\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}}], \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611\", \"items\": [{\"key\": \"item_1616221987611[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"fieldHtmlClass\": \"file-name\", \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, {\"key\": \"item_1616221987611[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221987611[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"title_i18n_temp\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"item_1616221987611[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].filesize\", \"items\": [{\"key\": \"item_1616221987611[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].fileDate\", \"items\": [{\"key\": \"item_1616221987611[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"title_i18n_temp\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"item_1616221987611[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"item_1616221987611[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"item_1616221987611[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"title_i18n_temp\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"item_1616221987611[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"title_i18n_temp\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"item_1616221987611[].licensefree\", \"type\": \"textarea\", \"notitle\": true, \"condition\": \"model.item_1616221987611[arrayIndex].licensetype == ''license_free''\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, {\"type\": \"template\", \"title\": \"剽窃チェック\", \"template\": \"
{{ form.title }}
\", \"title_i18n\": {\"en\": \"Check Plagiarism\", \"ja\": \"剽窃チェック\"}}, {\"key\": \"item_1616221987611[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"title_i18n_temp\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"item_1616221987611[].date[0].dateValue\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221987611[].groups\", \"type\": \"select\", \"title\": \"グループ\", \"titleMap\": [], \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Group\", \"ja\": \"グループ\"}, \"title_i18n_temp\": {\"en\": \"Group\", \"ja\": \"グループ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Co-user List\", \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}}, {\"key\": \"item_1616222047122\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"title\": \"WF Issued Date\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222067301\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222067301.subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222067301.subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}, \"title_i18n_temp\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"title\": \"Application Date\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222093486\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222093486.subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222093486.subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ \"}, \"title_i18n_temp\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ\"}}], \"title\": \"Approval Date\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222117209\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222117209.subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}], \"name\": \"利用申請\", \"action\": \"upt\", \"schema\": {\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1616221831877\": {\"type\": \"object\", \"title\": \"Dataset Usage\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"title\": \"Applicant\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221894659\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"subitem_restricted_access_institution_name\": {\"type\": \"string\", \"title\": \"Institution Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, \"subitem_restricted_access_institution_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Institution Position\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Applicant Affiliated Institution\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616221921931\": {\"type\": \"object\", \"title\": \"Usage Report ID\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221941275\": {\"type\": \"object\", \"title\": \"Research Title\", \"properties\": {\"subitem_restricted_access_research_title\": {\"type\": \"string\", \"title\": \"Research Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"title\": \"Research Plan\", \"properties\": {\"subitem_restricted_access_research_plan\": {\"type\": \"string\", \"title\": \"Research Plan\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, \"subitem_restricted_access_research_plan_type\": {\"enum\": [null, \"Abstract\"], \"type\": [\"null\", \"string\"], \"title\": \"Research Plan Type\", \"format\": \"select\", \"default\": \"Abstract\", \"currentEnum\": [\"Abstract\"]}}}, \"item_1616221987611\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"date\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"dateType\": {\"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": []}, \"dateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"オープンアクセスの日付\", \"format\": \"array\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, \"groups\": {\"type\": [\"null\", \"string\"], \"title\": \"グループ\", \"format\": \"select\", \"currentEnum\": []}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": [\"null\", \"string\"], \"title\": \"表示名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス\", \"format\": \"radios\"}, \"displaytype\": {\"enum\": [null, \"detail\", \"simple\", \"preview\"], \"type\": [\"null\", \"string\"], \"title\": \"表示形式\", \"format\": \"select\", \"currentEnum\": [\"detail\", \"simple\", \"preview\"]}, \"licensefree\": {\"type\": \"string\", \"title\": \"自由ライセンス\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, \"licensetype\": {\"type\": [\"null\", \"string\"], \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Co-user List\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616222047122\": {\"type\": \"object\", \"title\": \"WF Issued Date\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"title\": \"Application Date\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"title\": \"Approval Date\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"title\": \"Item Title\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}}, \"description\": \"\"}, \"mapping\": {\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221831877\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_restricted_access_dataset_usage\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221851421\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"affiliation\": {\"affiliationName\": {\"@value\": \"subitem_university/institution\"}}, \"creatorName\": {\"@value\": \"subitem_fullname\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221894659\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221921931\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221941275\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221960771\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"description\": {\"@value\": \"subitem_restricted_access_research_plan\", \"@attributes\": {\"descriptionType\": \"subitem_restricted_access_research_plan_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221987611\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222047122\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_wf_issued_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_wf_issued_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222067301\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_application_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_application_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222093486\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_approval_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_approval_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222117209\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_restricted_access_item_title\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_doi\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_hdl\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_uri\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}}}}", + "tag": 1, + "version_id": 36, + "is_deleted": false + }, + { + "id": 31002, + "name_id": 31002, + "harvesting_type": false, + "schema": "{\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1616221831877\": {\"type\": \"object\", \"title\": \"Dataset Usage\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"title\": \"Applicant\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221894659\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"subitem_restricted_access_institution_name\": {\"type\": \"string\", \"title\": \"Institution Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, \"subitem_restricted_access_institution_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Institution Position\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Applicant Affiliated Institution\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616221902404\": {\"type\": \"object\", \"title\": \"Guarantor\", \"properties\": {\"subitem_restricted_access_guarantor_name\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_restricted_access_guarantor_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_restricted_access_guarantor_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_restricted_access_guarantor_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_restricted_access_guarantor_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_restricted_access_guarantor_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_restricted_access_guarantor_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221921931\": {\"type\": \"object\", \"title\": \"Usage Report ID\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221941275\": {\"type\": \"object\", \"title\": \"Research Title\", \"properties\": {\"subitem_restricted_access_research_title\": {\"type\": \"string\", \"title\": \"Research Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"title\": \"Research Plan\", \"properties\": {\"subitem_restricted_access_research_plan\": {\"type\": \"string\", \"title\": \"Research Plan\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, \"subitem_restricted_access_research_plan_type\": {\"enum\": [null, \"Abstract\"], \"type\": [\"null\", \"string\"], \"title\": \"Research Plan Type\", \"format\": \"select\", \"default\": \"Abstract\", \"currentEnum\": [\"Abstract\"]}}}, \"item_1616221987611\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"date\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"dateType\": {\"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": []}, \"dateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"オープンアクセスの日付\", \"format\": \"array\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, \"groups\": {\"type\": [\"null\", \"string\"], \"title\": \"グループ\", \"format\": \"select\", \"currentEnum\": []}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": [\"null\", \"string\"], \"title\": \"表示名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス\", \"format\": \"radios\"}, \"displaytype\": {\"enum\": [null, \"detail\", \"simple\", \"preview\"], \"type\": [\"null\", \"string\"], \"title\": \"表示形式\", \"format\": \"select\", \"currentEnum\": [\"detail\", \"simple\", \"preview\"]}, \"licensefree\": {\"type\": \"string\", \"title\": \"自由ライセンス\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, \"licensetype\": {\"type\": [\"null\", \"string\"], \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Co-user List\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616222047122\": {\"type\": \"object\", \"title\": \"WF Issued Date\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"title\": \"Application Date\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"title\": \"Approval Date\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"title\": \"Item Title\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}}, \"description\": \"\"}", + "form": "[{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221831877\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221831877.subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}, {\"key\": \"item_1616221851421\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221851421.subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221851421.subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221851421.subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221851421.subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221851421.subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221851421.subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221851421.subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Applicant\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}, {\"add\": \"New\", \"key\": \"item_1616221894659\", \"items\": [{\"key\": \"item_1616221894659[].subitem_restricted_access_institution_name\", \"type\": \"text\", \"title\": \"Institution Name\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, {\"key\": \"item_1616221894659[].subitem_restricted_access_institution_position\", \"type\": \"select\", \"title\": \"Institution Position\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}, \"title_i18n_temp\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Applicant Affiliated Institution\", \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}}, {\"key\": \"item_1616221902404\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_name\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"approval\": true, \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Guarantor\", \"title_i18n\": {\"en\": \"Guarantor\", \"ja\": \"保証人\"}}, {\"key\": \"item_1616221921931\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221921931.subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}}, {\"key\": \"item_1616221941275\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221941275.subitem_restricted_access_research_title\", \"type\": \"text\", \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}], \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}, {\"key\": \"item_1616221960771\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221960771.subitem_restricted_access_research_plan\", \"type\": \"textarea\", \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"key\": \"item_1616221960771.subitem_restricted_access_research_plan_type\", \"type\": \"select\", \"title\": \"Research Plan Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}, \"title_i18n_temp\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}}], \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611\", \"items\": [{\"key\": \"item_1616221987611[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"fieldHtmlClass\": \"file-name\", \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, {\"key\": \"item_1616221987611[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221987611[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"title_i18n_temp\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"item_1616221987611[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].filesize\", \"items\": [{\"key\": \"item_1616221987611[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].fileDate\", \"items\": [{\"key\": \"item_1616221987611[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"title_i18n_temp\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"item_1616221987611[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"item_1616221987611[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"item_1616221987611[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"title_i18n_temp\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"item_1616221987611[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"title_i18n_temp\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"item_1616221987611[].licensefree\", \"type\": \"textarea\", \"notitle\": true, \"condition\": \"model.item_1616221987611[arrayIndex].licensetype == ''license_free''\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, {\"type\": \"template\", \"title\": \"剽窃チェック\", \"template\": \"
{{ form.title }}
\", \"title_i18n\": {\"en\": \"Check Plagiarism\", \"ja\": \"剽窃チェック\"}}, {\"key\": \"item_1616221987611[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"title_i18n_temp\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"item_1616221987611[].date[0].dateValue\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221987611[].groups\", \"type\": \"select\", \"title\": \"グループ\", \"titleMap\": [], \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Group\", \"ja\": \"グループ\"}, \"title_i18n_temp\": {\"en\": \"Group\", \"ja\": \"グループ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Co-user List\", \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}}, {\"key\": \"item_1616222047122\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"title\": \"WF Issued Date\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222067301\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222067301.subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222067301.subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}, \"title_i18n_temp\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"title\": \"Application Date\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222093486\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222093486.subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222093486.subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ \"}, \"title_i18n_temp\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ\"}}], \"title\": \"Approval Date\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222117209\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222117209.subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}]", + "render": "{\"meta_fix\": {\"pubdate\": {\"title\": \"PubDate\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": true, \"showlist\": false}, \"input_type\": \"datetime\", \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"input_value\": \"\"}}, \"meta_list\": {\"item_1616221831877\": {\"title\": \"Dataset Usage\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30001\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221851421\": {\"title\": \"Applicant\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30002\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221894659\": {\"title\": \"Applicant Affiliated Institution\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30003\", \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221902404\": {\"title\": \"Guarantor\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30004\", \"title_i18n\": {\"en\": \"Guarantor\", \"ja\": \"保証人\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221921931\": {\"title\": \"Usage Report ID\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30005\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221941275\": {\"title\": \"Research Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30006\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221960771\": {\"title\": \"Research Plan\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30007\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221987611\": {\"title\": \"Co-user List\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30008\", \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222047122\": {\"title\": \"WF Issued Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30011\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222067301\": {\"title\": \"Application Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30012\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222093486\": {\"title\": \"Approval Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30013\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222117209\": {\"title\": \"Item Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30014\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}}, \"table_row\": [\"item_1616221831877\", \"item_1616221851421\", \"item_1616221894659\", \"item_1616221902404\", \"item_1616221921931\", \"item_1616221941275\", \"item_1616221960771\", \"item_1616221987611\", \"item_1616222047122\", \"item_1616222067301\", \"item_1616222093486\", \"item_1616222117209\"], \"edit_notes\": {\"item_1616221831877\": \"\", \"item_1616221851421\": \"\", \"item_1616221894659\": \"\", \"item_1616221902404\": \"\", \"item_1616221921931\": \"\", \"item_1616221941275\": \"\", \"item_1616221960771\": \"\", \"item_1616221987611\": \"\", \"item_1616222047122\": \"\", \"item_1616222067301\": \"\", \"item_1616222093486\": \"\", \"item_1616222117209\": \"\"}, \"meta_system\": {\"system_file\": {\"title\": \"File Information\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_131\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}, \"input_value\": \"\"}, \"system_identifier_doi\": {\"title\": \"Persistent Identifier(DOI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}, \"input_value\": \"\"}, \"system_identifier_hdl\": {\"title\": \"Persistent Identifier(HDL)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}, \"input_value\": \"\"}, \"system_identifier_uri\": {\"title\": \"Persistent Identifier(URI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}, \"input_value\": \"\"}}, \"upload_file\": false, \"schemaeditor\": {\"schema\": {\"item_1616221831877\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221894659\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_institution_name\": {\"type\": \"string\", \"title\": \"Institution Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, \"subitem_restricted_access_institution_position\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"Institution Position\", \"format\": \"select\", \"currentEnum\": []}}}, \"item_1616221902404\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_guarantor_name\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_restricted_access_guarantor_position\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_restricted_access_guarantor_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_restricted_access_guarantor_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_restricted_access_guarantor_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_restricted_access_guarantor_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_restricted_access_guarantor_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221921931\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221941275\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_research_title\": {\"type\": \"string\", \"title\": \"Research Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_research_plan\": {\"type\": \"string\", \"title\": \"Research Plan\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, \"subitem_restricted_access_research_plan_type\": {\"enum\": [null, \"Abstract\"], \"type\": [\"null\", \"string\"], \"title\": \"Research Plan Type\", \"format\": \"select\", \"default\": \"Abstract\", \"currentEnum\": [\"Abstract\"]}}}, \"item_1616221987611\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"date\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"dateType\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": []}, \"dateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"オープンアクセスの日付\", \"format\": \"array\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, \"groups\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"グループ\", \"format\": \"select\", \"currentEnum\": []}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"表示名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス\", \"format\": \"radios\"}, \"displaytype\": {\"enum\": [null, \"detail\", \"simple\", \"preview\"], \"type\": [\"null\", \"string\"], \"title\": \"表示形式\", \"format\": \"select\", \"currentEnum\": [\"detail\", \"simple\", \"preview\"]}, \"licensefree\": {\"type\": \"string\", \"title\": \"自由ライセンス\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, \"licensetype\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}}}, \"item_1616222047122\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}}}, \"table_row_map\": {\"form\": [{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221831877\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221831877.subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}, {\"key\": \"item_1616221851421\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221851421.subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221851421.subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221851421.subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221851421.subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221851421.subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221851421.subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221851421.subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Applicant\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}, {\"add\": \"New\", \"key\": \"item_1616221894659\", \"items\": [{\"key\": \"item_1616221894659[].subitem_restricted_access_institution_name\", \"type\": \"text\", \"title\": \"Institution Name\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, {\"key\": \"item_1616221894659[].subitem_restricted_access_institution_position\", \"type\": \"select\", \"title\": \"Institution Position\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}, \"title_i18n_temp\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Applicant Affiliated Institution\", \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}}, {\"key\": \"item_1616221902404\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_name\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"approval\": true, \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221902404.subitem_restricted_access_guarantor_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Guarantor\", \"title_i18n\": {\"en\": \"Guarantor\", \"ja\": \"保証人\"}}, {\"key\": \"item_1616221921931\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221921931.subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}}, {\"key\": \"item_1616221941275\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221941275.subitem_restricted_access_research_title\", \"type\": \"text\", \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}], \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}, {\"key\": \"item_1616221960771\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221960771.subitem_restricted_access_research_plan\", \"type\": \"textarea\", \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"key\": \"item_1616221960771.subitem_restricted_access_research_plan_type\", \"type\": \"select\", \"title\": \"Research Plan Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}, \"title_i18n_temp\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}}], \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611\", \"items\": [{\"key\": \"item_1616221987611[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"fieldHtmlClass\": \"file-name\", \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, {\"key\": \"item_1616221987611[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221987611[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"item_1616221987611[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"title_i18n_temp\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"item_1616221987611[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].filesize\", \"items\": [{\"key\": \"item_1616221987611[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"item_1616221987611[].fileDate\", \"items\": [{\"key\": \"item_1616221987611[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"title_i18n_temp\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"item_1616221987611[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"item_1616221987611[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"item_1616221987611[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"title_i18n_temp\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"item_1616221987611[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"title_i18n_temp\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"item_1616221987611[].licensefree\", \"type\": \"textarea\", \"notitle\": true, \"condition\": \"model.item_1616221987611[arrayIndex].licensetype == ''license_free''\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, {\"type\": \"template\", \"title\": \"剽窃チェック\", \"template\": \"
{{ form.title }}
\", \"title_i18n\": {\"en\": \"Check Plagiarism\", \"ja\": \"剽窃チェック\"}}, {\"key\": \"item_1616221987611[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"title_i18n_temp\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"item_1616221987611[].date[0].dateValue\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221987611[].groups\", \"type\": \"select\", \"title\": \"グループ\", \"titleMap\": [], \"condition\": \"model.item_1616221987611[arrayIndex].accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Group\", \"ja\": \"グループ\"}, \"title_i18n_temp\": {\"en\": \"Group\", \"ja\": \"グループ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Co-user List\", \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}}, {\"key\": \"item_1616222047122\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"title\": \"WF Issued Date\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222067301\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222067301.subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222067301.subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}, \"title_i18n_temp\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"title\": \"Application Date\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222093486\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222093486.subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222093486.subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ \"}, \"title_i18n_temp\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ\"}}], \"title\": \"Approval Date\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222117209\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222117209.subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}], \"name\": \"二段階利用申請\", \"action\": \"upt\", \"schema\": {\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1616221831877\": {\"type\": \"object\", \"title\": \"Dataset Usage\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"title\": \"Applicant\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221894659\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"subitem_restricted_access_institution_name\": {\"type\": \"string\", \"title\": \"Institution Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}, \"title_i18n_temp\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, \"subitem_restricted_access_institution_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Institution Position\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Applicant Affiliated Institution\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616221902404\": {\"type\": \"object\", \"title\": \"Guarantor\", \"properties\": {\"subitem_restricted_access_guarantor_name\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_restricted_access_guarantor_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_restricted_access_guarantor_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_restricted_access_guarantor_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_restricted_access_guarantor_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_restricted_access_guarantor_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_restricted_access_guarantor_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221921931\": {\"type\": \"object\", \"title\": \"Usage Report ID\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221941275\": {\"type\": \"object\", \"title\": \"Research Title\", \"properties\": {\"subitem_restricted_access_research_title\": {\"type\": \"string\", \"title\": \"Research Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}, \"title_i18n_temp\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"title\": \"Research Plan\", \"properties\": {\"subitem_restricted_access_research_plan\": {\"type\": \"string\", \"title\": \"Research Plan\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}, \"title_i18n_temp\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, \"subitem_restricted_access_research_plan_type\": {\"enum\": [null, \"Abstract\"], \"type\": [\"null\", \"string\"], \"title\": \"Research Plan Type\", \"format\": \"select\", \"default\": \"Abstract\", \"currentEnum\": [\"Abstract\"]}}}, \"item_1616221987611\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"title_i18n_temp\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"title_i18n_temp\": {\"en\": \"Label\", \"ja\": \"ラベル\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"date\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"dateType\": {\"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": []}, \"dateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"オープンアクセスの日付\", \"format\": \"array\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"title_i18n_temp\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, \"groups\": {\"type\": [\"null\", \"string\"], \"title\": \"グループ\", \"format\": \"select\", \"currentEnum\": []}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"title_i18n_temp\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"title_i18n_temp\": {\"en\": \"Date\", \"ja\": \"日付\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": [\"null\", \"string\"], \"title\": \"表示名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"title_i18n_temp\": {\"en\": \"FileName\", \"ja\": \"表示名\"}}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"title_i18n_temp\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス\", \"format\": \"radios\"}, \"displaytype\": {\"enum\": [null, \"detail\", \"simple\", \"preview\"], \"type\": [\"null\", \"string\"], \"title\": \"表示形式\", \"format\": \"select\", \"currentEnum\": [\"detail\", \"simple\", \"preview\"]}, \"licensefree\": {\"type\": \"string\", \"title\": \"自由ライセンス\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"自由ライセンス\", \"ja\": \"自由ライセンス\"}}, \"licensetype\": {\"type\": [\"null\", \"string\"], \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"Co-user List\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1616222047122\": {\"type\": \"object\", \"title\": \"WF Issued Date\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"title\": \"Application Date\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"title\": \"Approval Date\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"title\": \"Item Title\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}}, \"description\": \"\"}, \"mapping\": {\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221831877\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_restricted_access_dataset_usage\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221851421\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"affiliation\": {\"affiliationName\": {\"@value\": \"subitem_university/institution\"}}, \"creatorName\": {\"@value\": \"subitem_fullname\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221894659\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221902404\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221921931\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221941275\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221960771\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"description\": {\"@value\": \"subitem_restricted_access_research_plan\", \"@attributes\": {\"descriptionType\": \"subitem_restricted_access_research_plan_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221987611\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222047122\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_wf_issued_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_wf_issued_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222067301\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_application_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_application_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222093486\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_approval_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_approval_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222117209\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_restricted_access_item_title\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_doi\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_hdl\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_uri\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}}}}", + "tag": 1, + "version_id": 26, + "is_deleted": false + }, + { + "id": 31003, + "name_id": 31003, + "harvesting_type": false, + "schema": "{\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1616221831877\": {\"type\": \"object\", \"title\": \"Dataset Usage\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"title\": \"Applicant\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221921931\": {\"type\": \"object\", \"title\": \"Usage Report ID\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"title\": \"Usage Report\", \"properties\": {\"subitem_restricted_access_usage_report\": {\"type\": \"string\", \"title\": \"Usage Report\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}, \"title_i18n_temp\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}}}, \"item_1616222027961\": {\"type\": \"object\", \"title\": \"Stop/Continue\", \"properties\": {\"subitem_restricted_access_stop/continue\": {\"enum\": [\"Stop\", \"Continue\"], \"type\": [\"null\", \"string\"], \"title\": \"Stop/Continue\", \"format\": \"radios\"}}}, \"item_1616222047122\": {\"type\": \"object\", \"title\": \"WF Issued Date\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"title\": \"Application Date\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"title\": \"Approval Date\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"title\": \"Item Title\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}}, \"description\": \"\"}", + "form": "[{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221831877\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221831877.subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}, {\"key\": \"item_1616221851421\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221851421.subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221851421.subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221851421.subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221851421.subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221851421.subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221851421.subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221851421.subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Applicant\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}, {\"key\": \"item_1616221921931\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221921931.subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}}, {\"key\": \"item_1616221960771\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221960771.subitem_restricted_access_usage_report\", \"type\": \"textarea\", \"title\": \"Usage Report\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}, \"title_i18n_temp\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}], \"title\": \"Usage Report\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}, {\"key\": \"item_1616222027961\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222027961.subitem_restricted_access_stop/continue\", \"type\": \"radios\", \"title\": \"Stop/Continue\", \"titleMap\": [{\"name\": \"Stop\", \"value\": \"Stop\", \"name_i18n\": {\"en\": \"Stop\", \"ja\": \"終了\"}}, {\"name\": \"Continue\", \"value\": \"Continue\", \"name_i18n\": {\"en\": \"Continue\", \"ja\": \"継続\"}}], \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}, \"title_i18n_temp\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}], \"title\": \"Stop/Continue\", \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}, {\"key\": \"item_1616222047122\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"title\": \"WF Issued Date\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222067301\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222067301.subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222067301.subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}, \"title_i18n_temp\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"title\": \"Application Date\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222093486\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222093486.subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222093486.subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ \"}, \"title_i18n_temp\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ\"}}], \"title\": \"Approval Date\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222117209\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222117209.subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}]", + "render": "{\"meta_fix\": {\"pubdate\": {\"title\": \"PubDate\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": true, \"showlist\": false}, \"input_type\": \"datetime\", \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"input_value\": \"\"}}, \"meta_list\": {\"item_1616221831877\": {\"title\": \"Dataset Usage\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30001\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221851421\": {\"title\": \"Applicant\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30002\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221921931\": {\"title\": \"Usage Report ID\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30005\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616221960771\": {\"title\": \"Usage Report\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30009\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222027961\": {\"title\": \"Stop/Continue\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30010\", \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222047122\": {\"title\": \"WF Issued Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30011\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222067301\": {\"title\": \"Application Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30012\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222093486\": {\"title\": \"Approval Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30013\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1616222117209\": {\"title\": \"Item Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_30014\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}}, \"table_row\": [\"item_1616221831877\", \"item_1616221851421\", \"item_1616221921931\", \"item_1616221960771\", \"item_1616222027961\", \"item_1616222047122\", \"item_1616222067301\", \"item_1616222093486\", \"item_1616222117209\"], \"edit_notes\": {\"item_1616221831877\": \"\", \"item_1616221851421\": \"\", \"item_1616221921931\": \"\", \"item_1616221960771\": \"\", \"item_1616222027961\": \"\", \"item_1616222047122\": \"\", \"item_1616222067301\": \"\", \"item_1616222093486\": \"\", \"item_1616222117209\": \"\"}, \"meta_system\": {\"system_file\": {\"title\": \"File Information\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_131\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}, \"input_value\": \"\"}, \"system_identifier_doi\": {\"title\": \"Persistent Identifier(DOI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}, \"input_value\": \"\"}, \"system_identifier_hdl\": {\"title\": \"Persistent Identifier(HDL)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}, \"input_value\": \"\"}, \"system_identifier_uri\": {\"title\": \"Persistent Identifier(URI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_130\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}, \"input_value\": \"\"}}, \"upload_file\": false, \"schemaeditor\": {\"schema\": {\"item_1616221831877\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221921931\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_usage_report\": {\"type\": \"string\", \"title\": \"Usage Report\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}, \"title_i18n_temp\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}}}, \"item_1616222027961\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_stop/continue\": {\"enum\": [\"Stop\", \"Continue\"], \"type\": [\"null\", \"string\"], \"title\": \"Stop/Continue\", \"format\": \"radios\"}}}, \"item_1616222047122\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}}}, \"table_row_map\": {\"form\": [{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"item_1616221831877\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221831877.subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}, {\"key\": \"item_1616221851421\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221851421.subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"item_1616221851421.subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"item_1616221851421.subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"item_1616221851421.subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"item_1616221851421.subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}, \"title_i18n_temp\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"item_1616221851421.subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"item_1616221851421.subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title\": \"Applicant\", \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}, {\"key\": \"item_1616221921931\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221921931.subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID\"}}, {\"key\": \"item_1616221960771\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616221960771.subitem_restricted_access_usage_report\", \"type\": \"textarea\", \"title\": \"Usage Report\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}, \"title_i18n_temp\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}], \"title\": \"Usage Report\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}, {\"key\": \"item_1616222027961\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222027961.subitem_restricted_access_stop/continue\", \"type\": \"radios\", \"title\": \"Stop/Continue\", \"titleMap\": [{\"name\": \"Stop\", \"value\": \"Stop\", \"name_i18n\": {\"en\": \"Stop\", \"ja\": \"終了\"}}, {\"name\": \"Continue\", \"value\": \"Continue\", \"name_i18n\": {\"en\": \"Continue\", \"ja\": \"継続\"}}], \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}, \"title_i18n_temp\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}], \"title\": \"Stop/Continue\", \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}, {\"key\": \"item_1616222047122\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222047122.subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"title\": \"WF Issued Date\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, {\"key\": \"item_1616222067301\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222067301.subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222067301.subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}, \"title_i18n_temp\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"title\": \"Application Date\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, {\"key\": \"item_1616222093486\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222093486.subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222093486.subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ \"}, \"title_i18n_temp\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ\"}}], \"title\": \"Approval Date\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, {\"key\": \"item_1616222117209\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1616222117209.subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}], \"name\": \"利用報告-Data Usage Report\", \"action\": \"upt\", \"schema\": {\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1616221831877\": {\"type\": \"object\", \"title\": \"Dataset Usage\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}, \"title_i18n_temp\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}}}, \"item_1616221851421\": {\"type\": \"object\", \"title\": \"Applicant\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}, \"title_i18n_temp\": {\"en\": \"Name\", \"ja\": \"名前\"}}, \"subitem_position\": {\"type\": [\"null\", \"string\"], \"title\": \"Position\", \"format\": \"select\", \"currentEnum\": []}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}, \"title_i18n_temp\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}, \"title_i18n_temp\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}, \"title_i18n_temp\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}, \"title_i18n_temp\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}, \"title_i18n_temp\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}}}, \"item_1616221921931\": {\"type\": \"object\", \"title\": \"Usage Report ID\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}, \"title_i18n_temp\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}}}, \"item_1616221960771\": {\"type\": \"object\", \"title\": \"Usage Report\", \"properties\": {\"subitem_restricted_access_usage_report\": {\"type\": \"string\", \"title\": \"Usage Report\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}, \"title_i18n_temp\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}}}, \"item_1616222027961\": {\"type\": \"object\", \"title\": \"Stop/Continue\", \"properties\": {\"subitem_restricted_access_stop/continue\": {\"enum\": [\"Stop\", \"Continue\"], \"type\": [\"null\", \"string\"], \"title\": \"Stop/Continue\", \"format\": \"radios\"}}}, \"item_1616222047122\": {\"type\": \"object\", \"title\": \"WF Issued Date\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"title_i18n_temp\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [null, \"Created\"], \"type\": [\"null\", \"string\"], \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\", \"currentEnum\": [\"Created\"]}}}, \"item_1616222067301\": {\"type\": \"object\", \"title\": \"Application Date\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"title_i18n_temp\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [null, \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\", \"currentEnum\": [\"Issued\"]}}}, \"item_1616222093486\": {\"type\": \"object\", \"title\": \"Approval Date\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"title_i18n_temp\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [null, \"Accepted\"], \"type\": [\"null\", \"string\"], \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\", \"currentEnum\": [\"Accepted\"]}}}, \"item_1616222117209\": {\"type\": \"object\", \"title\": \"Item Title\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}, \"title_i18n_temp\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}}}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\"}}, \"system_prop\": true}}, \"description\": \"\"}, \"mapping\": {\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221831877\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_restricted_access_dataset_usage\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221851421\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"affiliation\": {\"affiliationName\": {\"@value\": \"subitem_university/institution\"}}, \"creatorName\": {\"@value\": \"subitem_fullname\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221921931\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221960771\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222027961\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222047122\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_wf_issued_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_wf_issued_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222067301\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_application_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_application_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222093486\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_approval_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_approval_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222117209\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_restricted_access_item_title\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_doi\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_hdl\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_uri\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}}}}", + "tag": 1, + "version_id": 27, + "is_deleted": false + }, + { + "id": 31004, + "name_id": 31004, + "harvesting_type": false, + "schema": "{\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\", \"item_1617186331708\", \"item_1617258105262\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1698591601\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"original_language\", \"format\": \"object\", \"properties\": {\"original_language\": {\"type\": \"string\", \"title\": \"Original Language\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"原文の言語\"}}}}, \"title\": \"原文の言語\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591602\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"volume_title\", \"format\": \"object\", \"properties\": {\"volume_title\": {\"type\": \"string\", \"title\": \"部編名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}}, \"volume_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"部編名\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591603\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"catalog\", \"format\": \"object\", \"properties\": {\"catalog_file\": {\"type\": \"object\", \"title\": \"File\", \"format\": \"object\", \"properties\": {\"catalog_file_uri\": {\"type\": \"string\", \"title\": \"File URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}}, \"catalog_file_object_type\": {\"enum\": [null, \"thumbnail\"], \"type\": \"string\", \"title\": \"Object Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}}}}, \"catalog_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_right\": {\"type\": \"string\", \"title\": \"Rights\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}}, \"catalog_right_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_right_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"Rights\", \"format\": \"array\"}, \"catalog_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_title\": {\"type\": \"string\", \"title\": \"Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"catalog_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"format\": \"array\"}, \"catalog_licenses\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_license\": {\"type\": \"string\", \"title\": \"License\", \"format\": \"text\", \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, \"catalog_license_type\": {\"enum\": [null, \"file\", \"metadata\", \"thumbnail\"], \"type\": [\"null\", \"string\"], \"title\": \"License Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}}, \"catalog_license_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_license_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"License\", \"format\": \"array\"}, \"catalog_subjects\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_subject\": {\"type\": \"string\", \"title\": \"Subject\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"catalog_subject_uri\": {\"type\": \"string\", \"title\": \"Subject URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"catalog_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Subject Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}}, \"catalog_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"format\": \"array\"}, \"catalog_identifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_identifier\": {\"type\": \"string\", \"title\": \"Identifier\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}}, \"catalog_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"Identifier Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}}}}, \"title\": \"Identifier\", \"format\": \"array\"}, \"catalog_contributors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_type\": {\"enum\": [null, \"HostingInstitution\"], \"type\": [\"null\", \"string\"], \"title\": \"Contributor Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}}, \"contributor_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_name\": {\"type\": \"string\", \"title\": \"Contributor Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}}, \"contributor_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Contributor Name\", \"format\": \"array\"}}}, \"title\": \"Contributor\", \"format\": \"array\"}, \"catalog_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_description\": {\"type\": \"string\", \"title\": \"Description\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}}, \"catalog_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Description Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}}, \"catalog_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}}}}, \"title\": \"Descriptions\", \"format\": \"array\"}, \"catalog_access_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"アクセス権\", \"properties\": {\"catalog_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"catalog_access_right_rdf_resource\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"title\": \"Access Rights\", \"format\": \"array\"}}}, \"title\": \"カタログ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591604\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"jpcoar_format\", \"format\": \"object\", \"properties\": {\"jpcoar_format\": {\"type\": \"string\", \"title\": \"物理的形態\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}}, \"jpcoar_format_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"物理的形態\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591605\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"データセットシリーズ\", \"format\": \"object\", \"properties\": {\"jpcoar_dataset_series\": {\"enum\": [null, \"True\", \"False\"], \"type\": [\"null\", \"string\"], \"title\": \"Dataset Series\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}}}}, \"title\": \"データセットシリーズ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591606\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"edition\", \"format\": \"object\", \"properties\": {\"edition\": {\"type\": \"string\", \"title\": \"版\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}}, \"edition_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"版\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"holding_agent_name\", \"format\": \"object\", \"properties\": {\"holding_agent_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"holding_agent_name\": {\"type\": \"string\", \"title\": \"所蔵機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}}, \"holding_agent_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所蔵機関名\", \"format\": \"array\"}, \"holding_agent_name_identifier\": {\"type\": \"object\", \"title\": \"所蔵機関識別子\", \"format\": \"object\", \"properties\": {\"holding_agent_name_identifier_uri\": {\"type\": \"string\", \"title\": \"所蔵機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}}, \"holding_agent_name_identifier_value\": {\"type\": \"string\", \"title\": \"所蔵機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}}, \"holding_agent_name_identifier_scheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"], \"type\": \"string\", \"title\": \"所蔵機関識別子スキーマ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"currentEnum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"]}}}}}, \"title\": \"所蔵機関\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591608\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_date\", \"format\": \"object\", \"properties\": {\"subitem_dcterms_date\": {\"type\": \"string\", \"title\": \"日付(リテラル)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}}, \"subitem_dcterms_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}, \"system_prop\": false}, \"title\": \"日付(リテラル)\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591609\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_extent\", \"format\": \"object\", \"properties\": {\"dcterms_extent\": {\"type\": \"string\", \"title\": \"Extent\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}}, \"dcterms_extent_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"大きさ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591610\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"publisher_information\", \"format\": \"object\", \"properties\": {\"publisher_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_name\": {\"type\": \"string\", \"title\": \"出版者名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}}, \"publisher_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者名\", \"format\": \"array\"}, \"publication_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publication_place\": {\"type\": \"string\", \"title\": \"出版地(国名コード)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}}}}, \"title\": \"出版地(国名コード)\", \"format\": \"array\"}, \"publisher_locations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_location\": {\"type\": \"string\", \"title\": \"出版地\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}}}}, \"title\": \"出版地\", \"format\": \"array\"}, \"publisher_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_description\": {\"type\": \"string\", \"title\": \"出版者注記\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}}, \"publisher_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者注記\", \"format\": \"array\"}}}, \"title\": \"出版者情報\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186331708\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"required\": [\"subitem_title\", \"subitem_title_language\"], \"properties\": {\"subitem_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"subitem_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186385884\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_alternative_title\": {\"type\": \"string\", \"title\": \"その他のタイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}}, \"subitem_alternative_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Alternative Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186419668\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"iscreator\": {\"type\": \"string\", \"title\": \"iscreator\", \"format\": \"text\"}, \"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者名\", \"format\": \"array\"}, \"creatorType\": {\"type\": \"string\", \"title\": \"作成者タイプ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者姓\", \"format\": \"array\"}, \"creatorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"作成者メールアドレス\", \"format\": \"array\"}, \"creatorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}, \"creatorNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"creatorNameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"currentEnum\": [\"Personal\", \"Organizational\"]}}}, \"title\": \"作成者姓名\", \"format\": \"array\"}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"作成者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"作成者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"作成者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"IdentifierScheme\", \"ja\": \"作成者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"作成者識別子\", \"format\": \"array\"}, \"creatorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"affiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"affiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}}, \"affiliationNameIdentifierURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"affiliationNameIdentifierScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"作成者所属\", \"format\": \"array\"}, \"creatorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"creatorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Creator\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186476635\": {\"type\": \"object\", \"title\": \"Access Rights\", \"format\": \"object\", \"properties\": {\"subitem_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"subitem_access_right_uri\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"item_1617186499011\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_rights\": {\"type\": \"string\", \"title\": \"権利情報\", \"format\": \"text\"}, \"subitem_rights_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_rights_resource\": {\"type\": \"string\", \"title\": \"権利情報Resource\", \"format\": \"text\"}}}, \"title\": \"Rights\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186609386\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_subject\": {\"type\": \"string\", \"title\": \"主題\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"subitem_subject_uri\": {\"type\": \"string\", \"title\": \"主題URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"subitem_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"主題Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"currentEnum\": [\"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"]}, \"subitem_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186626617\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_description\": {\"type\": \"string\", \"title\": \"内容記述\", \"format\": \"textarea\"}, \"subitem_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"内容記述タイプ\", \"format\": \"select\", \"currentEnum\": [\"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"]}, \"subitem_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Description\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186643794\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_publisher\": {\"type\": \"string\", \"title\": \"出版者\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}}, \"subitem_publisher_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Publisher\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186660861\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_date_issued_type\": {\"enum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"subitem_date_issued_datetime\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}}}, \"title\": \"Date\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186702042\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_language\": {\"enum\": [null, \"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"]}}}, \"title\": \"Language\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186783814\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_identifier_uri\": {\"type\": \"string\", \"title\": \"識別子\", \"format\": \"text\"}, \"subitem_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186819068\": {\"type\": \"object\", \"title\": \"Identifier Registration\", \"format\": \"object\", \"properties\": {\"subitem_identifier_reg_text\": {\"type\": \"string\", \"title\": \"ID登録\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}}, \"subitem_identifier_reg_type\": {\"enum\": [null, \"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"], \"type\": [\"null\", \"string\"], \"title\": \"ID登録タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"currentEnum\": [\"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"]}}}, \"item_1617186859717\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_temporal_text\": {\"type\": \"string\", \"title\": \"時間的範囲\", \"format\": \"text\"}, \"subitem_temporal_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Temporal\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186882738\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_box\": {\"type\": \"object\", \"title\": \"位置情報(空間)\", \"format\": \"object\", \"properties\": {\"subitem_east_longitude\": {\"type\": \"string\", \"title\": \"東部経度\", \"format\": \"text\"}, \"subitem_north_latitude\": {\"type\": \"string\", \"title\": \"北部緯度\", \"format\": \"text\"}, \"subitem_south_latitude\": {\"type\": \"string\", \"title\": \"南部緯度\", \"format\": \"text\"}, \"subitem_west_longitude\": {\"type\": \"string\", \"title\": \"西部経度\", \"format\": \"text\"}}}, \"subitem_geolocation_place\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_place_text\": {\"type\": \"string\", \"title\": \"位置情報(自由記述)\", \"format\": \"text\"}}}, \"title\": \"位置情報(自由記述)\", \"format\": \"array\"}, \"subitem_geolocation_point\": {\"type\": \"object\", \"title\": \"位置情報(点)\", \"format\": \"object\", \"properties\": {\"subitem_point_latitude\": {\"type\": \"string\", \"title\": \"緯度\", \"format\": \"text\"}, \"subitem_point_longitude\": {\"type\": \"string\", \"title\": \"経度\", \"format\": \"text\"}}}}}, \"title\": \"Geo Location\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186901218\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_title\": {\"type\": \"string\", \"title\": \"研究課題名\", \"format\": \"text\"}, \"subitem_award_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"研究課題名\", \"format\": \"array\"}, \"subitem_funder_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funder_name\": {\"type\": \"string\", \"title\": \"助成機関名\", \"format\": \"text\"}, \"subitem_funder_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"助成機関名\", \"format\": \"array\"}, \"subitem_award_numbers\": {\"type\": \"object\", \"title\": \"研究課題番号\", \"format\": \"object\", \"properties\": {\"subitem_award_uri\": {\"type\": \"string\", \"title\": \"研究課題番号URI\", \"format\": \"text\"}, \"subitem_award_number\": {\"type\": \"string\", \"title\": \"研究課題番号\", \"format\": \"text\"}, \"subitem_award_number_type\": {\"enum\": [null, \"JGN\"], \"type\": [\"null\", \"string\"], \"title\": \"研究課題番号タイプ\", \"format\": \"select\"}}}, \"subitem_funding_streams\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream\": {\"type\": \"string\", \"title\": \"プログラム情報\", \"format\": \"text\"}, \"subitem_funding_stream_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"プログラム情報\", \"format\": \"array\"}, \"subitem_funder_identifiers\": {\"type\": \"object\", \"title\": \"助成機関識別子\", \"format\": \"object\", \"properties\": {\"subitem_funder_identifier\": {\"type\": \"string\", \"title\": \"助成機関識別子\", \"format\": \"text\"}, \"subitem_funder_identifier_type\": {\"enum\": [null, \"Crossref Funder\", \"e-Rad_funder\", \"GRID\", \"ISNI\", \"ROR\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"助成機関識別子タイプ\", \"format\": \"select\"}, \"subitem_funder_identifier_type_uri\": {\"type\": \"string\", \"title\": \"助成機関識別子タイプURI\", \"format\": \"text\"}}}, \"subitem_funding_stream_identifiers\": {\"type\": \"object\", \"title\": \"プログラム情報識別子\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream_identifier\": {\"type\": \"string\", \"title\": \"プログラム情報識別子\", \"format\": \"text\"}, \"subitem_funding_stream_identifier_type\": {\"enum\": [\"Crossref Funder\", \"JGN_fundingStream\"], \"type\": [\"null\", \"string\"], \"title\": \"プログラム情報識別子タイプ\", \"format\": \"select\"}, \"subitem_funding_stream_identifier_type_uri\": {\"type\": \"string\", \"title\": \"プログラム情報識別子タイプURI\", \"format\": \"text\"}}}}}, \"title\": \"Funding Reference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186920753\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_identifier\": {\"type\": \"string\", \"title\": \"収録物識別子\", \"format\": \"text\"}, \"subitem_source_identifier_type\": {\"enum\": [null, \"PISSN\", \"EISSN\", \"ISSN\", \"NCID\"], \"type\": [\"null\", \"string\"], \"title\": \"収録物識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Source Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186941041\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_title\": {\"type\": \"string\", \"title\": \"収録物名\", \"format\": \"text\"}, \"subitem_source_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Source Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186959569\": {\"type\": \"object\", \"title\": \"Volume Number\", \"format\": \"object\", \"properties\": {\"subitem_volume\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}}}}, \"item_1617186981471\": {\"type\": \"object\", \"title\": \"Issue Number\", \"format\": \"object\", \"properties\": {\"subitem_issue\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}}}}, \"item_1617186994930\": {\"type\": \"object\", \"title\": \"Number of Pages\", \"format\": \"object\", \"properties\": {\"subitem_number_of_pages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}}}}, \"item_1617187024783\": {\"type\": \"object\", \"title\": \"Page Start\", \"format\": \"object\", \"properties\": {\"subitem_start_page\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}}}}, \"item_1617187045071\": {\"type\": \"object\", \"title\": \"Page End\", \"format\": \"object\", \"properties\": {\"subitem_end_page\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}}}}, \"item_1617187056579\": {\"type\": \"object\", \"title\": \"Bibliographic Information\", \"format\": \"object\", \"properties\": {\"bibliographicPageEnd\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\"}, \"bibliographic_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"bibliographic_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\"}, \"bibliographic_titleLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"雑誌名\", \"format\": \"array\"}, \"bibliographicPageStart\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\"}, \"bibliographicIssueDates\": {\"type\": \"object\", \"title\": \"発行日\", \"format\": \"object\", \"properties\": {\"bibliographicIssueDate\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}, \"bibliographicIssueDateType\": {\"enum\": [null, \"\", \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"\", \"Issued\"]}}}, \"bibliographicIssueNumber\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\"}, \"bibliographicVolumeNumber\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\"}, \"bibliographicNumberOfPages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1617187087799\": {\"type\": \"object\", \"title\": \"Dissertation Number\", \"format\": \"object\", \"properties\": {\"subitem_dissertationnumber\": {\"type\": \"string\", \"title\": \"学位授与番号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}}}}, \"item_1617187112279\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"学位名\", \"format\": \"object\", \"properties\": {\"subitem_degreename\": {\"type\": \"string\", \"title\": \"学位名\", \"format\": \"text\"}, \"subitem_degreename_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Degree Name\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617187136212\": {\"type\": \"object\", \"title\": \"Date Granted\", \"format\": \"object\", \"properties\": {\"subitem_dategranted\": {\"type\": \"string\", \"title\": \"学位授与年月日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}}}}, \"item_1617187187528\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_date\": {\"type\": \"object\", \"title\": \"開催期間\", \"format\": \"object\", \"properties\": {\"subitem_conference_period\": {\"type\": \"string\", \"title\": \"開催期間\", \"format\": \"text\"}, \"subitem_conference_end_day\": {\"type\": \"string\", \"title\": \"終了日\", \"format\": \"text\"}, \"subitem_conference_end_year\": {\"type\": \"string\", \"title\": \"終了年\", \"format\": \"text\"}, \"subitem_conference_end_month\": {\"type\": \"string\", \"title\": \"終了月\", \"format\": \"text\"}, \"subitem_conference_start_day\": {\"type\": \"string\", \"title\": \"開始日\", \"format\": \"text\"}, \"subitem_conference_start_year\": {\"type\": \"string\", \"title\": \"開始年\", \"format\": \"text\"}, \"subitem_conference_start_month\": {\"type\": \"string\", \"title\": \"開始月\", \"format\": \"text\"}, \"subitem_conference_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"subitem_conference_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_name\": {\"type\": \"string\", \"title\": \"会議名\", \"format\": \"text\"}, \"subitem_conference_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"会議名\", \"format\": \"array\"}, \"subitem_conference_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_place\": {\"type\": \"string\", \"title\": \"開催地\", \"format\": \"text\"}, \"subitem_conference_place_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催地\", \"format\": \"array\"}, \"subitem_conference_venues\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_venue\": {\"type\": \"string\", \"title\": \"開催会場\", \"format\": \"text\"}, \"subitem_conference_venue_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催会場\", \"format\": \"array\"}, \"subitem_conference_country\": {\"enum\": [null, \"JPN\", \"ABW\", \"AFG\", \"AGO\", \"AIA\", \"ALA\", \"ALB\", \"AND\", \"ARE\", \"ARG\", \"ARM\", \"ASM\", \"ATA\", \"ATF\", \"ATG\", \"AUS\", \"AUT\", \"AZE\", \"BDI\", \"BEL\", \"BEN\", \"BES\", \"BFA\", \"BGD\", \"BGR\", \"BHR\", \"BHS\", \"BIH\", \"BLM\", \"BLR\", \"BLZ\", \"BMU\", \"BOL\", \"BRA\", \"BRB\", \"BRN\", \"BTN\", \"BVT\", \"BWA\", \"CAF\", \"CAN\", \"CCK\", \"CHE\", \"CHL\", \"CHN\", \"CIV\", \"CMR\", \"COD\", \"COG\", \"COK\", \"COL\", \"COM\", \"CPV\", \"CRI\", \"CUB\", \"CUW\", \"CXR\", \"CYM\", \"CYP\", \"CZE\", \"DEU\", \"DJI\", \"DMA\", \"DNK\", \"DOM\", \"DZA\", \"ECU\", \"EGY\", \"ERI\", \"ESH\", \"ESP\", \"EST\", \"ETH\", \"FIN\", \"FJI\", \"FLK\", \"FRA\", \"FRO\", \"FSM\", \"GAB\", \"GBR\", \"GEO\", \"GGY\", \"GHA\", \"GIB\", \"GIN\", \"GLP\", \"GMB\", \"GNB\", \"GNQ\", \"GRC\", \"GRD\", \"GRL\", \"GTM\", \"GUF\", \"GUM\", \"GUY\", \"HKG\", \"HMD\", \"HND\", \"HRV\", \"HTI\", \"HUN\", \"IDN\", \"IMN\", \"IND\", \"IOT\", \"IRL\", \"IRN\", \"IRQ\", \"ISL\", \"ISR\", \"ITA\", \"JAM\", \"JEY\", \"JOR\", \"KAZ\", \"KEN\", \"KGZ\", \"KHM\", \"KIR\", \"KNA\", \"KOR\", \"KWT\", \"LAO\", \"LBN\", \"LBR\", \"LBY\", \"LCA\", \"LIE\", \"LKA\", \"LSO\", \"LTU\", \"LUX\", \"LVA\", \"MAC\", \"MAF\", \"MAR\", \"MCO\", \"MDA\", \"MDG\", \"MDV\", \"MEX\", \"MHL\", \"MKD\", \"MLI\", \"MLT\", \"MMR\", \"MNE\", \"MNG\", \"MNP\", \"MOZ\", \"MRT\", \"MSR\", \"MTQ\", \"MUS\", \"MWI\", \"MYS\", \"MYT\", \"NAM\", \"NCL\", \"NER\", \"NFK\", \"NGA\", \"NIC\", \"NIU\", \"NLD\", \"NOR\", \"NPL\", \"NRU\", \"NZL\", \"OMN\", \"PAK\", \"PAN\", \"PCN\", \"PER\", \"PHL\", \"PLW\", \"PNG\", \"POL\", \"PRI\", \"PRK\", \"PRT\", \"PRY\", \"PSE\", \"PYF\", \"QAT\", \"REU\", \"ROU\", \"RUS\", \"RWA\", \"SAU\", \"SDN\", \"SEN\", \"SGP\", \"SGS\", \"SHN\", \"SJM\", \"SLB\", \"SLE\", \"SLV\", \"SMR\", \"SOM\", \"SPM\", \"SRB\", \"SSD\", \"STP\", \"SUR\", \"SVK\", \"SVN\", \"SWE\", \"SWZ\", \"SXM\", \"SYC\", \"SYR\", \"TCA\", \"TCD\", \"TGO\", \"THA\", \"TJK\", \"TKL\", \"TKM\", \"TLS\", \"TON\", \"TTO\", \"TUN\", \"TUR\", \"TUV\", \"TWN\", \"TZA\", \"UGA\", \"UKR\", \"UMI\", \"URY\", \"USA\", \"UZB\", \"VAT\", \"VCT\", \"VEN\", \"VGB\", \"VIR\", \"VNM\", \"VUT\", \"WLF\", \"WSM\", \"YEM\", \"ZAF\", \"ZMB\", \"ZWE\"], \"type\": [\"null\", \"string\"], \"title\": \"開催国\", \"format\": \"select\"}, \"subitem_conference_sequence\": {\"type\": \"string\", \"title\": \"回次\", \"format\": \"text\"}, \"subitem_conference_sponsors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_sponsor\": {\"type\": \"string\", \"title\": \"主催機関\", \"format\": \"text\"}, \"subitem_conference_sponsor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"主催機関\", \"format\": \"array\"}}}, \"title\": \"Conference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617258105262\": {\"type\": \"object\", \"title\": \"Resource Type\", \"format\": \"object\", \"required\": [\"resourceuri\", \"resourcetype\"], \"properties\": {\"resourceuri\": {\"type\": \"string\", \"title\": \"資源タイプ識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}}, \"resourcetype\": {\"enum\": [null, \"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"資源タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"currentEnum\": [\"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"]}}, \"system_prop\": true}, \"item_1617265215918\": {\"type\": \"object\", \"title\": \"Version Type\", \"format\": \"object\", \"properties\": {\"subitem_version_type\": {\"enum\": [null, \"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"], \"type\": [\"null\", \"string\"], \"title\": \"出版タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"currentEnum\": [\"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"]}, \"subitem_peer_reviewed\": {\"enum\": [null, \"Peer reviewed\", \"Not peer reviewed\"], \"type\": [\"null\", \"string\"], \"title\": \"査読の有無\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"currentEnum\": [\"Peer reviewed\", \"Not peer reviewed\"]}, \"subitem_version_resource\": {\"type\": \"string\", \"title\": \"出版タイプResource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}}}, \"system_prop\": true}, \"item_1617349709064\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者名\", \"format\": \"array\"}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者姓\", \"format\": \"array\"}, \"contributorType\": {\"enum\": [null, \"ContactPerson\", \"DataCollector\", \"DataCurator\", \"DataManager\", \"Distributor\", \"Editor\", \"HostingInstitution\", \"Producer\", \"ProjectLeader\", \"ProjectManager\", \"ProjectMember\", \"RelatedPerson\", \"Researcher\", \"ResearchGroup\", \"Sponsor\", \"Supervisor\", \"WorkPackageLeader\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"寄与者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"寄与者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"寄与者識別子\", \"format\": \"array\"}, \"contributorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"寄与者メールアドレス\", \"format\": \"array\"}, \"contributorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"lang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"nameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"editAble\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}}, \"contributorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}}}, \"title\": \"寄与者姓名\", \"format\": \"array\"}, \"contributorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"contributorAffiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"contributorAffiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"contributorAffiliationScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"currentEnum\": [\"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"]}, \"contributorAffiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"寄与者所属\", \"format\": \"array\"}, \"contributorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"contributorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Contributor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617349808926\": {\"type\": \"object\", \"title\": \"Version\", \"format\": \"object\", \"properties\": {\"subitem_version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}}}}, \"item_1617351524846\": {\"type\": \"object\", \"title\": \"APC\", \"format\": \"object\", \"properties\": {\"subitem_apc\": {\"enum\": [null, \"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"], \"type\": [\"null\", \"string\"], \"title\": \"APC\", \"format\": \"select\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"currentEnum\": [\"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"]}}}, \"item_1617353299429\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name_text\": {\"type\": \"string\", \"title\": \"関連名称\", \"format\": \"text\"}, \"subitem_relation_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"関連名称\", \"format\": \"array\"}, \"subitem_relation_type\": {\"enum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"], \"type\": [\"null\", \"string\"], \"title\": \"関連タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"]}, \"subitem_relation_type_id\": {\"type\": \"object\", \"title\": \"関連識別子\", \"format\": \"object\", \"properties\": {\"subitem_relation_type_select\": {\"enum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"]}, \"subitem_relation_type_id_text\": {\"type\": \"string\", \"title\": \"関連識別子\", \"format\": \"text\"}}}}}, \"title\": \"Relation\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617610673286\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"権利者識別子\", \"format\": \"text\"}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"権利者識別子URI\", \"format\": \"text\"}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"権利者識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"権利者識別子\", \"format\": \"array\"}, \"rightHolderNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"rightHolderName\": {\"type\": \"string\", \"title\": \"権利者名\", \"format\": \"text\"}, \"rightHolderLanguage\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"権利者名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Rights Holder\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617620223087\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_heading_headline\": {\"type\": \"string\", \"title\": \"小見出し\", \"format\": \"text\"}, \"subitem_heading_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_heading_banner_headline\": {\"type\": \"string\", \"title\": \"大見出し\", \"format\": \"text\"}}, \"system_prop\": true}, \"title\": \"Heading\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617944105607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_name\": {\"type\": \"string\", \"title\": \"学位授与機関名\", \"format\": \"text\"}, \"subitem_degreegrantor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"学位授与機関名\", \"format\": \"array\"}, \"subitem_degreegrantor_identifier\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_identifier_name\": {\"type\": \"string\", \"title\": \"学位授与機関識別子\", \"format\": \"text\"}, \"subitem_degreegrantor_identifier_scheme\": {\"enum\": [null, \"kakenhi\"], \"type\": [\"null\", \"string\"], \"title\": \"学位授与機関識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"学位授与機関識別子\", \"format\": \"array\"}}}, \"title\": \"Degree Grantor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1718082005802\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\", \"currentEnum\": []}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\", \"currentEnum\": []}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\", \"open_restricted\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_restricted\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"Restricted File\", \"maxItems\": 9999, \"minItems\": 1}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}}, \"description\": \"\"}", + "form": "[{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"item_1617186331708\", \"items\": [{\"key\": \"item_1617186331708[].subitem_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186331708[].subitem_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186385884\", \"items\": [{\"key\": \"item_1617186385884[].subitem_alternative_title\", \"type\": \"text\", \"title\": \"その他のタイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186385884[].subitem_alternative_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Alternative Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668\", \"items\": [{\"key\": \"item_1617186419668[].creatorType\", \"type\": \"text\", \"title\": \"作成者タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"作成者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"e-Rad\", \"value\": \"e-Rad\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"WEKO\", \"value\": \"WEKO\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier Scheme\", \"ja\": \"作成者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"作成者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorNames[].creatorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name\", \"ja\": \"作成者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].familyNames\", \"items\": [{\"key\": \"item_1617186419668[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Family Name\", \"ja\": \"作成者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].givenNames\", \"items\": [{\"key\": \"item_1617186419668[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Given Name\", \"ja\": \"作成者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAlternatives\", \"items\": [{\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Alternative Name\", \"ja\": \"作成者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"作成者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorMails\", \"items\": [{\"key\": \"item_1617186419668[].creatorMails[].creatorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Email Address\", \"ja\": \"作成者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617186419668'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Creator\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator\", \"ja\": \"作成者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064\", \"items\": [{\"key\": \"item_1617349709064[].contributorType\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ContactPerson\", \"value\": \"ContactPerson\"}, {\"name\": \"DataCollector\", \"value\": \"DataCollector\"}, {\"name\": \"DataCurator\", \"value\": \"DataCurator\"}, {\"name\": \"DataManager\", \"value\": \"DataManager\"}, {\"name\": \"Distributor\", \"value\": \"Distributor\"}, {\"name\": \"Editor\", \"value\": \"Editor\"}, {\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}, {\"name\": \"Producer\", \"value\": \"Producer\"}, {\"name\": \"ProjectLeader\", \"value\": \"ProjectLeader\"}, {\"name\": \"ProjectManager\", \"value\": \"ProjectManager\"}, {\"name\": \"ProjectMember\", \"value\": \"ProjectMember\"}, {\"name\": \"RelatedPerson\", \"value\": \"RelatedPerson\"}, {\"name\": \"Researcher\", \"value\": \"Researcher\"}, {\"name\": \"ResearchGroup\", \"value\": \"ResearchGroup\"}, {\"name\": \"Sponsor\", \"value\": \"Sponsor\"}, {\"name\": \"Supervisor\", \"value\": \"Supervisor\"}, {\"name\": \"WorkPackageLeader\", \"value\": \"WorkPackageLeader\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"寄与者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"寄与者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorNames[].contributorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].lang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].nameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"寄与者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].familyNames\", \"items\": [{\"key\": \"item_1617349709064[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Family Name\", \"ja\": \"寄与者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].givenNames\", \"items\": [{\"key\": \"item_1617349709064[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Given Name\", \"ja\": \"寄与者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAlternatives\", \"items\": [{\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Alternative Name\", \"ja\": \"寄与者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"寄与者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorMails\", \"items\": [{\"key\": \"item_1617349709064[].contributorMails[].contributorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Email Address\", \"ja\": \"寄与者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617349709064[]'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"寄与者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186476635.subitem_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635.subitem_access_right_uri\", \"type\": \"text\", \"title\": \"アクセス権URI\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617351524846\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617351524846.subitem_apc\", \"type\": \"select\", \"title\": \"APC\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Paid\", \"value\": \"Paid\"}, {\"name\": \"Partially waived\", \"value\": \"Partially waived\"}, {\"name\": \"Fully waived\", \"value\": \"Fully waived\"}, {\"name\": \"Not charged\", \"value\": \"Not charged\"}, {\"name\": \"Not required\", \"value\": \"Not required\"}, {\"name\": \"Unknown\", \"value\": \"Unknown\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"APC\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186499011\", \"items\": [{\"key\": \"item_1617186499011[].subitem_rights_resource\", \"type\": \"text\", \"title\": \"権利情報Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights Resource\", \"ja\": \"権利情報Resource\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights\", \"type\": \"text\", \"title\": \"権利情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617610673286[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"権利者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier Scheme\", \"ja\": \"権利者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"権利者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier URI\", \"ja\": \"権利者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286[].rightHolderNames\", \"items\": [{\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderName\", \"type\": \"text\", \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderLanguage\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights Holder\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder\", \"ja\": \"権利者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186609386\", \"items\": [{\"key\": \"item_1617186609386[].subitem_subject_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_scheme\", \"type\": \"select\", \"title\": \"主題Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject\", \"type\": \"text\", \"title\": \"主題\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_uri\", \"type\": \"text\", \"title\": \"主題URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186626617\", \"items\": [{\"key\": \"item_1617186626617[].subitem_description_type\", \"type\": \"select\", \"title\": \"内容記述タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description\", \"type\": \"textarea\", \"title\": \"内容記述\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186643794\", \"items\": [{\"key\": \"item_1617186643794[].subitem_publisher\", \"type\": \"text\", \"title\": \"出版者\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186643794[].subitem_publisher_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186660861\", \"items\": [{\"key\": \"item_1617186660861[].subitem_date_issued_datetime\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186660861[].subitem_date_issued_type\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Date\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186702042\", \"items\": [{\"key\": \"item_1617186702042[].subitem_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"jpn\", \"value\": \"jpn\"}, {\"name\": \"eng\", \"value\": \"eng\"}, {\"name\": \"aar\", \"value\": \"aar\"}, {\"name\": \"abk\", \"value\": \"abk\"}, {\"name\": \"afr\", \"value\": \"afr\"}, {\"name\": \"aka\", \"value\": \"aka\"}, {\"name\": \"amh\", \"value\": \"amh\"}, {\"name\": \"ara\", \"value\": \"ara\"}, {\"name\": \"arg\", \"value\": \"arg\"}, {\"name\": \"asm\", \"value\": \"asm\"}, {\"name\": \"ava\", \"value\": \"ava\"}, {\"name\": \"ave\", \"value\": \"ave\"}, {\"name\": \"aym\", \"value\": \"aym\"}, {\"name\": \"aze\", \"value\": \"aze\"}, {\"name\": \"bak\", \"value\": \"bak\"}, {\"name\": \"bam\", \"value\": \"bam\"}, {\"name\": \"bel\", \"value\": \"bel\"}, {\"name\": \"ben\", \"value\": \"ben\"}, {\"name\": \"bis\", \"value\": \"bis\"}, {\"name\": \"bod\", \"value\": \"bod\"}, {\"name\": \"bos\", \"value\": \"bos\"}, {\"name\": \"bre\", \"value\": \"bre\"}, {\"name\": \"bul\", \"value\": \"bul\"}, {\"name\": \"cat\", \"value\": \"cat\"}, {\"name\": \"ces\", \"value\": \"ces\"}, {\"name\": \"cha\", \"value\": \"cha\"}, {\"name\": \"che\", \"value\": \"che\"}, {\"name\": \"chu\", \"value\": \"chu\"}, {\"name\": \"chv\", \"value\": \"chv\"}, {\"name\": \"cor\", \"value\": \"cor\"}, {\"name\": \"cos\", \"value\": \"cos\"}, {\"name\": \"cre\", \"value\": \"cre\"}, {\"name\": \"cym\", \"value\": \"cym\"}, {\"name\": \"dan\", \"value\": \"dan\"}, {\"name\": \"deu\", \"value\": \"deu\"}, {\"name\": \"div\", \"value\": \"div\"}, {\"name\": \"dzo\", \"value\": \"dzo\"}, {\"name\": \"ell\", \"value\": \"ell\"}, {\"name\": \"epo\", \"value\": \"epo\"}, {\"name\": \"est\", \"value\": \"est\"}, {\"name\": \"eus\", \"value\": \"eus\"}, {\"name\": \"ewe\", \"value\": \"ewe\"}, {\"name\": \"fao\", \"value\": \"fao\"}, {\"name\": \"fas\", \"value\": \"fas\"}, {\"name\": \"fij\", \"value\": \"fij\"}, {\"name\": \"fin\", \"value\": \"fin\"}, {\"name\": \"fra\", \"value\": \"fra\"}, {\"name\": \"fry\", \"value\": \"fry\"}, {\"name\": \"ful\", \"value\": \"ful\"}, {\"name\": \"gla\", \"value\": \"gla\"}, {\"name\": \"gle\", \"value\": \"gle\"}, {\"name\": \"glg\", \"value\": \"glg\"}, {\"name\": \"glv\", \"value\": \"glv\"}, {\"name\": \"grn\", \"value\": \"grn\"}, {\"name\": \"guj\", \"value\": \"guj\"}, {\"name\": \"hat\", \"value\": \"hat\"}, {\"name\": \"hau\", \"value\": \"hau\"}, {\"name\": \"heb\", \"value\": \"heb\"}, {\"name\": \"her\", \"value\": \"her\"}, {\"name\": \"hin\", \"value\": \"hin\"}, {\"name\": \"hmo\", \"value\": \"hmo\"}, {\"name\": \"hrv\", \"value\": \"hrv\"}, {\"name\": \"hun\", \"value\": \"hun\"}, {\"name\": \"hye\", \"value\": \"hye\"}, {\"name\": \"ibo\", \"value\": \"ibo\"}, {\"name\": \"ido\", \"value\": \"ido\"}, {\"name\": \"iii\", \"value\": \"iii\"}, {\"name\": \"iku\", \"value\": \"iku\"}, {\"name\": \"ile\", \"value\": \"ile\"}, {\"name\": \"ina\", \"value\": \"ina\"}, {\"name\": \"ind\", \"value\": \"ind\"}, {\"name\": \"ipk\", \"value\": \"ipk\"}, {\"name\": \"isl\", \"value\": \"isl\"}, {\"name\": \"ita\", \"value\": \"ita\"}, {\"name\": \"jav\", \"value\": \"jav\"}, {\"name\": \"kal\", \"value\": \"kal\"}, {\"name\": \"kan\", \"value\": \"kan\"}, {\"name\": \"kas\", \"value\": \"kas\"}, {\"name\": \"kat\", \"value\": \"kat\"}, {\"name\": \"kau\", \"value\": \"kau\"}, {\"name\": \"kaz\", \"value\": \"kaz\"}, {\"name\": \"khm\", \"value\": \"khm\"}, {\"name\": \"kik\", \"value\": \"kik\"}, {\"name\": \"kin\", \"value\": \"kin\"}, {\"name\": \"kir\", \"value\": \"kir\"}, {\"name\": \"kom\", \"value\": \"kom\"}, {\"name\": \"kon\", \"value\": \"kon\"}, {\"name\": \"kor\", \"value\": \"kor\"}, {\"name\": \"kua\", \"value\": \"kua\"}, {\"name\": \"kur\", \"value\": \"kur\"}, {\"name\": \"lao\", \"value\": \"lao\"}, {\"name\": \"lat\", \"value\": \"lat\"}, {\"name\": \"lav\", \"value\": \"lav\"}, {\"name\": \"lim\", \"value\": \"lim\"}, {\"name\": \"lin\", \"value\": \"lin\"}, {\"name\": \"lit\", \"value\": \"lit\"}, {\"name\": \"ltz\", \"value\": \"ltz\"}, {\"name\": \"lub\", \"value\": \"lub\"}, {\"name\": \"lug\", \"value\": \"lug\"}, {\"name\": \"mah\", \"value\": \"mah\"}, {\"name\": \"mal\", \"value\": \"mal\"}, {\"name\": \"mar\", \"value\": \"mar\"}, {\"name\": \"mkd\", \"value\": \"mkd\"}, {\"name\": \"mlg\", \"value\": \"mlg\"}, {\"name\": \"mlt\", \"value\": \"mlt\"}, {\"name\": \"mon\", \"value\": \"mon\"}, {\"name\": \"mri\", \"value\": \"mri\"}, {\"name\": \"msa\", \"value\": \"msa\"}, {\"name\": \"mya\", \"value\": \"mya\"}, {\"name\": \"nau\", \"value\": \"nau\"}, {\"name\": \"nav\", \"value\": \"nav\"}, {\"name\": \"nbl\", \"value\": \"nbl\"}, {\"name\": \"nde\", \"value\": \"nde\"}, {\"name\": \"ndo\", \"value\": \"ndo\"}, {\"name\": \"nep\", \"value\": \"nep\"}, {\"name\": \"nld\", \"value\": \"nld\"}, {\"name\": \"nno\", \"value\": \"nno\"}, {\"name\": \"nob\", \"value\": \"nob\"}, {\"name\": \"nor\", \"value\": \"nor\"}, {\"name\": \"nya\", \"value\": \"nya\"}, {\"name\": \"oci\", \"value\": \"oci\"}, {\"name\": \"oji\", \"value\": \"oji\"}, {\"name\": \"ori\", \"value\": \"ori\"}, {\"name\": \"orm\", \"value\": \"orm\"}, {\"name\": \"oss\", \"value\": \"oss\"}, {\"name\": \"pan\", \"value\": \"pan\"}, {\"name\": \"pli\", \"value\": \"pli\"}, {\"name\": \"pol\", \"value\": \"pol\"}, {\"name\": \"por\", \"value\": \"por\"}, {\"name\": \"pus\", \"value\": \"pus\"}, {\"name\": \"que\", \"value\": \"que\"}, {\"name\": \"roh\", \"value\": \"roh\"}, {\"name\": \"ron\", \"value\": \"ron\"}, {\"name\": \"run\", \"value\": \"run\"}, {\"name\": \"rus\", \"value\": \"rus\"}, {\"name\": \"sag\", \"value\": \"sag\"}, {\"name\": \"san\", \"value\": \"san\"}, {\"name\": \"sin\", \"value\": \"sin\"}, {\"name\": \"slk\", \"value\": \"slk\"}, {\"name\": \"slv\", \"value\": \"slv\"}, {\"name\": \"sme\", \"value\": \"sme\"}, {\"name\": \"smo\", \"value\": \"smo\"}, {\"name\": \"sna\", \"value\": \"sna\"}, {\"name\": \"snd\", \"value\": \"snd\"}, {\"name\": \"som\", \"value\": \"som\"}, {\"name\": \"sot\", \"value\": \"sot\"}, {\"name\": \"spa\", \"value\": \"spa\"}, {\"name\": \"sqi\", \"value\": \"sqi\"}, {\"name\": \"srd\", \"value\": \"srd\"}, {\"name\": \"srp\", \"value\": \"srp\"}, {\"name\": \"ssw\", \"value\": \"ssw\"}, {\"name\": \"sun\", \"value\": \"sun\"}, {\"name\": \"swa\", \"value\": \"swa\"}, {\"name\": \"swe\", \"value\": \"swe\"}, {\"name\": \"tah\", \"value\": \"tah\"}, {\"name\": \"tam\", \"value\": \"tam\"}, {\"name\": \"tat\", \"value\": \"tat\"}, {\"name\": \"tel\", \"value\": \"tel\"}, {\"name\": \"tgk\", \"value\": \"tgk\"}, {\"name\": \"tgl\", \"value\": \"tgl\"}, {\"name\": \"tha\", \"value\": \"tha\"}, {\"name\": \"tir\", \"value\": \"tir\"}, {\"name\": \"ton\", \"value\": \"ton\"}, {\"name\": \"tsn\", \"value\": \"tsn\"}, {\"name\": \"tso\", \"value\": \"tso\"}, {\"name\": \"tuk\", \"value\": \"tuk\"}, {\"name\": \"tur\", \"value\": \"tur\"}, {\"name\": \"twi\", \"value\": \"twi\"}, {\"name\": \"uig\", \"value\": \"uig\"}, {\"name\": \"ukr\", \"value\": \"ukr\"}, {\"name\": \"urd\", \"value\": \"urd\"}, {\"name\": \"uzb\", \"value\": \"uzb\"}, {\"name\": \"ven\", \"value\": \"ven\"}, {\"name\": \"vie\", \"value\": \"vie\"}, {\"name\": \"vol\", \"value\": \"vol\"}, {\"name\": \"wln\", \"value\": \"wln\"}, {\"name\": \"wol\", \"value\": \"wol\"}, {\"name\": \"xho\", \"value\": \"xho\"}, {\"name\": \"yid\", \"value\": \"yid\"}, {\"name\": \"yor\", \"value\": \"yor\"}, {\"name\": \"zha\", \"value\": \"zha\"}, {\"name\": \"zho\", \"value\": \"zho\"}, {\"name\": \"zul\", \"value\": \"zul\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Language\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617258105262.resourceuri\", \"type\": \"text\", \"title\": \"資源タイプ識別子\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262.resourcetype\", \"type\": \"select\", \"title\": \"資源タイプ \", \"isHide\": false, \"onChange\": \"resourceTypeSelect()\", \"required\": false, \"titleMap\": [{\"name\": \"conference paper\", \"value\": \"conference paper\"}, {\"name\": \"data paper\", \"value\": \"data paper\"}, {\"name\": \"departmental bulletin paper\", \"value\": \"departmental bulletin paper\"}, {\"name\": \"editorial\", \"value\": \"editorial\"}, {\"name\": \"journal\", \"value\": \"journal\"}, {\"name\": \"journal article\", \"value\": \"journal article\"}, {\"name\": \"newspaper\", \"value\": \"newspaper\"}, {\"name\": \"review article\", \"value\": \"review article\"}, {\"name\": \"other periodical\", \"value\": \"other periodical\"}, {\"name\": \"software paper\", \"value\": \"software paper\"}, {\"name\": \"article\", \"value\": \"article\"}, {\"name\": \"book\", \"value\": \"book\"}, {\"name\": \"book part\", \"value\": \"book part\"}, {\"name\": \"cartographic material\", \"value\": \"cartographic material\"}, {\"name\": \"map\", \"value\": \"map\"}, {\"name\": \"conference output\", \"value\": \"conference output\"}, {\"name\": \"conference presentation\", \"value\": \"conference presentation\"}, {\"name\": \"conference proceedings\", \"value\": \"conference proceedings\"}, {\"name\": \"conference poster\", \"value\": \"conference poster\"}, {\"name\": \"aggregated data\", \"value\": \"aggregated data\"}, {\"name\": \"clinical trial data\", \"value\": \"clinical trial data\"}, {\"name\": \"compiled data\", \"value\": \"compiled data\"}, {\"name\": \"dataset\", \"value\": \"dataset\"}, {\"name\": \"encoded data\", \"value\": \"encoded data\"}, {\"name\": \"experimental data\", \"value\": \"experimental data\"}, {\"name\": \"genomic data\", \"value\": \"genomic data\"}, {\"name\": \"geospatial data\", \"value\": \"geospatial data\"}, {\"name\": \"laboratory notebook\", \"value\": \"laboratory notebook\"}, {\"name\": \"measurement and test data\", \"value\": \"measurement and test data\"}, {\"name\": \"observational data\", \"value\": \"observational data\"}, {\"name\": \"recorded data\", \"value\": \"recorded data\"}, {\"name\": \"simulation data\", \"value\": \"simulation data\"}, {\"name\": \"survey data\", \"value\": \"survey data\"}, {\"name\": \"image\", \"value\": \"image\"}, {\"name\": \"still image\", \"value\": \"still image\"}, {\"name\": \"moving image\", \"value\": \"moving image\"}, {\"name\": \"video\", \"value\": \"video\"}, {\"name\": \"lecture\", \"value\": \"lecture\"}, {\"name\": \"design patent\", \"value\": \"design patent\"}, {\"name\": \"patent\", \"value\": \"patent\"}, {\"name\": \"PCT application\", \"value\": \"PCT application\"}, {\"name\": \"plant patent\", \"value\": \"plant patent\"}, {\"name\": \"plant variety protection\", \"value\": \"plant variety protection\"}, {\"name\": \"software patent\", \"value\": \"software patent\"}, {\"name\": \"trademark\", \"value\": \"trademark\"}, {\"name\": \"utility model\", \"value\": \"utility model\"}, {\"name\": \"report\", \"value\": \"report\"}, {\"name\": \"research report\", \"value\": \"research report\"}, {\"name\": \"technical report\", \"value\": \"technical report\"}, {\"name\": \"policy report\", \"value\": \"policy report\"}, {\"name\": \"working paper\", \"value\": \"working paper\"}, {\"name\": \"data management plan\", \"value\": \"data management plan\"}, {\"name\": \"sound\", \"value\": \"sound\"}, {\"name\": \"thesis\", \"value\": \"thesis\"}, {\"name\": \"bachelor thesis\", \"value\": \"bachelor thesis\"}, {\"name\": \"master thesis\", \"value\": \"master thesis\"}, {\"name\": \"doctoral thesis\", \"value\": \"doctoral thesis\"}, {\"name\": \"commentary\", \"value\": \"commentary\"}, {\"name\": \"design\", \"value\": \"design\"}, {\"name\": \"industrial design\", \"value\": \"industrial design\"}, {\"name\": \"interactive resource\", \"value\": \"interactive resource\"}, {\"name\": \"layout design\", \"value\": \"layout design\"}, {\"name\": \"learning object\", \"value\": \"learning object\"}, {\"name\": \"manuscript\", \"value\": \"manuscript\"}, {\"name\": \"musical notation\", \"value\": \"musical notation\"}, {\"name\": \"peer review\", \"value\": \"peer review\"}, {\"name\": \"research proposal\", \"value\": \"research proposal\"}, {\"name\": \"research protocol\", \"value\": \"research protocol\"}, {\"name\": \"software\", \"value\": \"software\"}, {\"name\": \"source code\", \"value\": \"source code\"}, {\"name\": \"technical documentation\", \"value\": \"technical documentation\"}, {\"name\": \"transcription\", \"value\": \"transcription\"}, {\"name\": \"workflow\", \"value\": \"workflow\"}, {\"name\": \"other\", \"value\": \"other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Resource Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349808926\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617349808926.subitem_version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617265215918.subitem_version_type\", \"type\": \"select\", \"title\": \"出版タイプ\", \"isHide\": false, \"onChange\": \"changedVersionType(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"AO\", \"value\": \"AO\"}, {\"name\": \"SMUR\", \"value\": \"SMUR\"}, {\"name\": \"AM\", \"value\": \"AM\"}, {\"name\": \"P\", \"value\": \"P\"}, {\"name\": \"VoR\", \"value\": \"VoR\"}, {\"name\": \"CVoR\", \"value\": \"CVoR\"}, {\"name\": \"EVoR\", \"value\": \"EVoR\"}, {\"name\": \"NA\", \"value\": \"NA\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_version_resource\", \"type\": \"text\", \"title\": \"出版タイプResource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-version-resource\", \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_peer_reviewed\", \"type\": \"select\", \"title\": \"査読の有無\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Peer reviewed\", \"value\": \"Peer reviewed\", \"name_i18n\": {\"en\": \"Peer reviewed\", \"ja\": \"査読あり\"}}, {\"name\": \"Not peer reviewed\", \"value\": \"Not peer reviewed\", \"name_i18n\": {\"en\": \"Not peer reviewed\", \"ja\": \"査読なし\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186783814\", \"items\": [{\"key\": \"item_1617186783814[].subitem_identifier_uri\", \"type\": \"text\", \"title\": \"識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186783814[].subitem_identifier_type\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186819068.subitem_identifier_reg_text\", \"type\": \"text\", \"title\": \"ID登録\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068.subitem_identifier_reg_type\", \"type\": \"select\", \"title\": \"ID登録タイプ\", \"isHide\": false, \"readonly\": true, \"required\": false, \"titleMap\": [{\"name\": \"JaLC\", \"value\": \"JaLC\"}, {\"name\": \"Crossref\", \"value\": \"Crossref\"}, {\"name\": \"DataCite\", \"value\": \"DataCite\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Identifier Registration\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type\", \"type\": \"select\", \"title\": \"関連タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"isVersionOf\", \"value\": \"isVersionOf\"}, {\"name\": \"hasVersion\", \"value\": \"hasVersion\"}, {\"name\": \"isPartOf\", \"value\": \"isPartOf\"}, {\"name\": \"hasPart\", \"value\": \"hasPart\"}, {\"name\": \"isReferencedBy\", \"value\": \"isReferencedBy\"}, {\"name\": \"references\", \"value\": \"references\"}, {\"name\": \"isFormatOf\", \"value\": \"isFormatOf\"}, {\"name\": \"hasFormat\", \"value\": \"hasFormat\"}, {\"name\": \"isReplacedBy\", \"value\": \"isReplacedBy\"}, {\"name\": \"replaces\", \"value\": \"replaces\"}, {\"name\": \"isRequiredBy\", \"value\": \"isRequiredBy\"}, {\"name\": \"requires\", \"value\": \"requires\"}, {\"name\": \"isSupplementedBy\", \"value\": \"isSupplementedBy\"}, {\"name\": \"isSupplementTo\", \"value\": \"isSupplementTo\"}, {\"name\": \"isIdenticalTo\", \"value\": \"isIdenticalTo\"}, {\"name\": \"isDerivedFrom\", \"value\": \"isDerivedFrom\"}, {\"name\": \"isSourceOf\", \"value\": \"isSourceOf\"}, {\"name\": \"isCitedBy\", \"value\": \"isCitedBy\"}, {\"name\": \"Cites\", \"value\": \"Cites\"}, {\"name\": \"inSeries\", \"value\": \"inSeries\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation Type\", \"ja\": \"関連タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_select\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ARK\", \"value\": \"ARK\"}, {\"name\": \"arXiv\", \"value\": \"arXiv\"}, {\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"ICHUSHI\", \"value\": \"ICHUSHI\"}, {\"name\": \"ISBN\", \"value\": \"ISBN\"}, {\"name\": \"J-GLOBAL\", \"value\": \"J-GLOBAL\"}, {\"name\": \"Local\", \"value\": \"Local\"}, {\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN【非推奨】\", \"value\": \"ISSN\"}, {\"name\": \"NAID【非推奨】\", \"value\": \"NAID\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}, {\"name\": \"PURL\", \"value\": \"PURL\"}, {\"name\": \"SCOPUS\", \"value\": \"SCOPUS\"}, {\"name\": \"URI\", \"value\": \"URI\"}, {\"name\": \"WOS\", \"value\": \"WOS\"}, {\"name\": \"CRID\", \"value\": \"CRID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_id_text\", \"type\": \"text\", \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429[].subitem_relation_name\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_text\", \"type\": \"text\", \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Relation\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation\", \"ja\": \"関連情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186859717\", \"items\": [{\"key\": \"item_1617186859717[].subitem_temporal_text\", \"type\": \"text\", \"title\": \"時間的範囲\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186859717[].subitem_temporal_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Temporal\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_longitude\", \"type\": \"text\", \"title\": \"経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Longitude\", \"ja\": \"経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_latitude\", \"type\": \"text\", \"title\": \"緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Latitude\", \"ja\": \"緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(点)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Point\", \"ja\": \"位置情報(点)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_west_longitude\", \"type\": \"text\", \"title\": \"西部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"West Bound Longitude\", \"ja\": \"西部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_east_longitude\", \"type\": \"text\", \"title\": \"東部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"East Bound Longitude\", \"ja\": \"東部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_south_latitude\", \"type\": \"text\", \"title\": \"南部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"South Bound Latitude\", \"ja\": \"南部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_north_latitude\", \"type\": \"text\", \"title\": \"北部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"North Bound Latitude\", \"ja\": \"北部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(空間)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Box\", \"ja\": \"位置情報(空間)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738[].subitem_geolocation_place\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_place[].subitem_geolocation_place_text\", \"type\": \"text\", \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Geo Location\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location\", \"ja\": \"位置情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type\", \"type\": \"select\", \"title\": \"助成機関識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"e-Rad_funder\", \"value\": \"e-Rad_funder\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type\", \"ja\": \"助成機関識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier\", \"type\": \"text\", \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type_uri\", \"type\": \"text\", \"title\": \"助成機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type URI\", \"ja\": \"助成機関識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funder_names\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name\", \"type\": \"text\", \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type\", \"type\": \"select\", \"title\": \"プログラム情報識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"JGN_fundingStream\", \"value\": \"JGN_fundingStream\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type\", \"ja\": \"プログラム情報識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier\", \"type\": \"text\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type_uri\", \"type\": \"text\", \"title\": \"プログラム情報識別子タイプURI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type URI\", \"ja\": \"プログラム情報識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"プログラム情報識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifiers\", \"ja\": \"プログラム情報識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funding_streams\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_streams.subitem_funding_stream\", \"type\": \"text\", \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_streams[].subitem_funding_stream_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Streams\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number_type\", \"type\": \"select\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JGN\", \"value\": \"JGN\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number Type\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number\", \"type\": \"text\", \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_uri\", \"type\": \"text\", \"title\": \"研究課題番号URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number URI\", \"ja\": \"研究課題番号URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_award_titles\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title\", \"type\": \"text\", \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Funding Reference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder\", \"ja\": \"助成情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186920753\", \"items\": [{\"key\": \"item_1617186920753[].subitem_source_identifier_type\", \"type\": \"select\", \"title\": \"収録物識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN\", \"value\": \"ISSN\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier Type\", \"ja\": \"収録物識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186920753[].subitem_source_identifier\", \"type\": \"text\", \"title\": \"収録物識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186941041\", \"items\": [{\"key\": \"item_1617186941041[].subitem_source_title\", \"type\": \"text\", \"title\": \"収録物名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186941041[].subitem_source_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186959569\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186959569.subitem_volume\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Volume Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186981471\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186981471.subitem_issue\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Issue Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186994930\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186994930.subitem_number_of_pages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Number of Pages\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187024783\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187024783.subitem_start_page\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page Start\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187045071\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187045071.subitem_end_page\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page End\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187056579.bibliographic_titles\", \"items\": [{\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_titleLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"雑誌名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Journal Title\", \"ja\": \"雑誌名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicVolumeNumber\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Number\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueNumber\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Number\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageStart\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page Start\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageEnd\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page End\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicNumberOfPages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Page\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDate\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"\", \"value\": \"\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"発行日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Date\", \"ja\": \"発行日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Bibliographic Information\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Bibliographic Information\", \"ja\": \"書誌情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187087799\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187087799.subitem_dissertationnumber\", \"type\": \"text\", \"title\": \"学位授与番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Dissertation Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187112279\", \"items\": [{\"key\": \"item_1617187112279[].subitem_degreename\", \"type\": \"text\", \"title\": \"学位名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187112279[].subitem_degreename_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187136212\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187136212.subitem_dategranted\", \"type\": \"template\", \"title\": \"学位授与年月日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Date Granted\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor_identifier\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_scheme\", \"type\": \"select\", \"title\": \"学位授与機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier Scheme\", \"ja\": \"学位授与機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_name\", \"type\": \"text\", \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_name\", \"type\": \"text\", \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Grantor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor\", \"ja\": \"学位授与機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_names\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name\", \"type\": \"text\", \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sequence\", \"type\": \"text\", \"title\": \"回次\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sequence\", \"ja\": \"回次\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_sponsors\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor\", \"type\": \"text\", \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_year\", \"type\": \"text\", \"title\": \"開始年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Year\", \"ja\": \"開始年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_month\", \"type\": \"text\", \"title\": \"開始月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Month\", \"ja\": \"開始月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_day\", \"type\": \"text\", \"title\": \"開始日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Day\", \"ja\": \"開始日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_year\", \"type\": \"text\", \"title\": \"終了年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Year\", \"ja\": \"終了年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_month\", \"type\": \"text\", \"title\": \"終了月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Month\", \"ja\": \"終了月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_day\", \"type\": \"text\", \"title\": \"終了日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Day\", \"ja\": \"終了日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_period\", \"type\": \"text\", \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_venues\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue\", \"type\": \"text\", \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_places\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place\", \"type\": \"text\", \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_country\", \"type\": \"select\", \"title\": \"開催国\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JPN\", \"value\": \"JPN\"}, {\"name\": \"ABW\", \"value\": \"ABW\"}, {\"name\": \"AFG\", \"value\": \"AFG\"}, {\"name\": \"AGO\", \"value\": \"AGO\"}, {\"name\": \"AIA\", \"value\": \"AIA\"}, {\"name\": \"ALA\", \"value\": \"ALA\"}, {\"name\": \"ALB\", \"value\": \"ALB\"}, {\"name\": \"AND\", \"value\": \"AND\"}, {\"name\": \"ARE\", \"value\": \"ARE\"}, {\"name\": \"ARG\", \"value\": \"ARG\"}, {\"name\": \"ARM\", \"value\": \"ARM\"}, {\"name\": \"ASM\", \"value\": \"ASM\"}, {\"name\": \"ATA\", \"value\": \"ATA\"}, {\"name\": \"ATF\", \"value\": \"ATF\"}, {\"name\": \"ATG\", \"value\": \"ATG\"}, {\"name\": \"AUS\", \"value\": \"AUS\"}, {\"name\": \"AUT\", \"value\": \"AUT\"}, {\"name\": \"AZE\", \"value\": \"AZE\"}, {\"name\": \"BDI\", \"value\": \"BDI\"}, {\"name\": \"BEL\", \"value\": \"BEL\"}, {\"name\": \"BEN\", \"value\": \"BEN\"}, {\"name\": \"BES\", \"value\": \"BES\"}, {\"name\": \"BFA\", \"value\": \"BFA\"}, {\"name\": \"BGD\", \"value\": \"BGD\"}, {\"name\": \"BGR\", \"value\": \"BGR\"}, {\"name\": \"BHR\", \"value\": \"BHR\"}, {\"name\": \"BHS\", \"value\": \"BHS\"}, {\"name\": \"BIH\", \"value\": \"BIH\"}, {\"name\": \"BLM\", \"value\": \"BLM\"}, {\"name\": \"BLR\", \"value\": \"BLR\"}, {\"name\": \"BLZ\", \"value\": \"BLZ\"}, {\"name\": \"BMU\", \"value\": \"BMU\"}, {\"name\": \"BOL\", \"value\": \"BOL\"}, {\"name\": \"BRA\", \"value\": \"BRA\"}, {\"name\": \"BRB\", \"value\": \"BRB\"}, {\"name\": \"BRN\", \"value\": \"BRN\"}, {\"name\": \"BTN\", \"value\": \"BTN\"}, {\"name\": \"BVT\", \"value\": \"BVT\"}, {\"name\": \"BWA\", \"value\": \"BWA\"}, {\"name\": \"CAF\", \"value\": \"CAF\"}, {\"name\": \"CAN\", \"value\": \"CAN\"}, {\"name\": \"CCK\", \"value\": \"CCK\"}, {\"name\": \"CHE\", \"value\": \"CHE\"}, {\"name\": \"CHL\", \"value\": \"CHL\"}, {\"name\": \"CHN\", \"value\": \"CHN\"}, {\"name\": \"CIV\", \"value\": \"CIV\"}, {\"name\": \"CMR\", \"value\": \"CMR\"}, {\"name\": \"COD\", \"value\": \"COD\"}, {\"name\": \"COG\", \"value\": \"COG\"}, {\"name\": \"COK\", \"value\": \"COK\"}, {\"name\": \"COL\", \"value\": \"COL\"}, {\"name\": \"COM\", \"value\": \"COM\"}, {\"name\": \"CPV\", \"value\": \"CPV\"}, {\"name\": \"CRI\", \"value\": \"CRI\"}, {\"name\": \"CUB\", \"value\": \"CUB\"}, {\"name\": \"CUW\", \"value\": \"CUW\"}, {\"name\": \"CXR\", \"value\": \"CXR\"}, {\"name\": \"CYM\", \"value\": \"CYM\"}, {\"name\": \"CYP\", \"value\": \"CYP\"}, {\"name\": \"CZE\", \"value\": \"CZE\"}, {\"name\": \"DEU\", \"value\": \"DEU\"}, {\"name\": \"DJI\", \"value\": \"DJI\"}, {\"name\": \"DMA\", \"value\": \"DMA\"}, {\"name\": \"DNK\", \"value\": \"DNK\"}, {\"name\": \"DOM\", \"value\": \"DOM\"}, {\"name\": \"DZA\", \"value\": \"DZA\"}, {\"name\": \"ECU\", \"value\": \"ECU\"}, {\"name\": \"EGY\", \"value\": \"EGY\"}, {\"name\": \"ERI\", \"value\": \"ERI\"}, {\"name\": \"ESH\", \"value\": \"ESH\"}, {\"name\": \"ESP\", \"value\": \"ESP\"}, {\"name\": \"EST\", \"value\": \"EST\"}, {\"name\": \"ETH\", \"value\": \"ETH\"}, {\"name\": \"FIN\", \"value\": \"FIN\"}, {\"name\": \"FJI\", \"value\": \"FJI\"}, {\"name\": \"FLK\", \"value\": \"FLK\"}, {\"name\": \"FRA\", \"value\": \"FRA\"}, {\"name\": \"FRO\", \"value\": \"FRO\"}, {\"name\": \"FSM\", \"value\": \"FSM\"}, {\"name\": \"GAB\", \"value\": \"GAB\"}, {\"name\": \"GBR\", \"value\": \"GBR\"}, {\"name\": \"GEO\", \"value\": \"GEO\"}, {\"name\": \"GGY\", \"value\": \"GGY\"}, {\"name\": \"GHA\", \"value\": \"GHA\"}, {\"name\": \"GIB\", \"value\": \"GIB\"}, {\"name\": \"GIN\", \"value\": \"GIN\"}, {\"name\": \"GLP\", \"value\": \"GLP\"}, {\"name\": \"GMB\", \"value\": \"GMB\"}, {\"name\": \"GNB\", \"value\": \"GNB\"}, {\"name\": \"GNQ\", \"value\": \"GNQ\"}, {\"name\": \"GRC\", \"value\": \"GRC\"}, {\"name\": \"GRD\", \"value\": \"GRD\"}, {\"name\": \"GRL\", \"value\": \"GRL\"}, {\"name\": \"GTM\", \"value\": \"GTM\"}, {\"name\": \"GUF\", \"value\": \"GUF\"}, {\"name\": \"GUM\", \"value\": \"GUM\"}, {\"name\": \"GUY\", \"value\": \"GUY\"}, {\"name\": \"HKG\", \"value\": \"HKG\"}, {\"name\": \"HMD\", \"value\": \"HMD\"}, {\"name\": \"HND\", \"value\": \"HND\"}, {\"name\": \"HRV\", \"value\": \"HRV\"}, {\"name\": \"HTI\", \"value\": \"HTI\"}, {\"name\": \"HUN\", \"value\": \"HUN\"}, {\"name\": \"IDN\", \"value\": \"IDN\"}, {\"name\": \"IMN\", \"value\": \"IMN\"}, {\"name\": \"IND\", \"value\": \"IND\"}, {\"name\": \"IOT\", \"value\": \"IOT\"}, {\"name\": \"IRL\", \"value\": \"IRL\"}, {\"name\": \"IRN\", \"value\": \"IRN\"}, {\"name\": \"IRQ\", \"value\": \"IRQ\"}, {\"name\": \"ISL\", \"value\": \"ISL\"}, {\"name\": \"ISR\", \"value\": \"ISR\"}, {\"name\": \"ITA\", \"value\": \"ITA\"}, {\"name\": \"JAM\", \"value\": \"JAM\"}, {\"name\": \"JEY\", \"value\": \"JEY\"}, {\"name\": \"JOR\", \"value\": \"JOR\"}, {\"name\": \"KAZ\", \"value\": \"KAZ\"}, {\"name\": \"KEN\", \"value\": \"KEN\"}, {\"name\": \"KGZ\", \"value\": \"KGZ\"}, {\"name\": \"KHM\", \"value\": \"KHM\"}, {\"name\": \"KIR\", \"value\": \"KIR\"}, {\"name\": \"KNA\", \"value\": \"KNA\"}, {\"name\": \"KOR\", \"value\": \"KOR\"}, {\"name\": \"KWT\", \"value\": \"KWT\"}, {\"name\": \"LAO\", \"value\": \"LAO\"}, {\"name\": \"LBN\", \"value\": \"LBN\"}, {\"name\": \"LBR\", \"value\": \"LBR\"}, {\"name\": \"LBY\", \"value\": \"LBY\"}, {\"name\": \"LCA\", \"value\": \"LCA\"}, {\"name\": \"LIE\", \"value\": \"LIE\"}, {\"name\": \"LKA\", \"value\": \"LKA\"}, {\"name\": \"LSO\", \"value\": \"LSO\"}, {\"name\": \"LTU\", \"value\": \"LTU\"}, {\"name\": \"LUX\", \"value\": \"LUX\"}, {\"name\": \"LVA\", \"value\": \"LVA\"}, {\"name\": \"MAC\", \"value\": \"MAC\"}, {\"name\": \"MAF\", \"value\": \"MAF\"}, {\"name\": \"MAR\", \"value\": \"MAR\"}, {\"name\": \"MCO\", \"value\": \"MCO\"}, {\"name\": \"MDA\", \"value\": \"MDA\"}, {\"name\": \"MDG\", \"value\": \"MDG\"}, {\"name\": \"MDV\", \"value\": \"MDV\"}, {\"name\": \"MEX\", \"value\": \"MEX\"}, {\"name\": \"MHL\", \"value\": \"MHL\"}, {\"name\": \"MKD\", \"value\": \"MKD\"}, {\"name\": \"MLI\", \"value\": \"MLI\"}, {\"name\": \"MLT\", \"value\": \"MLT\"}, {\"name\": \"MMR\", \"value\": \"MMR\"}, {\"name\": \"MNE\", \"value\": \"MNE\"}, {\"name\": \"MNG\", \"value\": \"MNG\"}, {\"name\": \"MNP\", \"value\": \"MNP\"}, {\"name\": \"MOZ\", \"value\": \"MOZ\"}, {\"name\": \"MRT\", \"value\": \"MRT\"}, {\"name\": \"MSR\", \"value\": \"MSR\"}, {\"name\": \"MTQ\", \"value\": \"MTQ\"}, {\"name\": \"MUS\", \"value\": \"MUS\"}, {\"name\": \"MWI\", \"value\": \"MWI\"}, {\"name\": \"MYS\", \"value\": \"MYS\"}, {\"name\": \"MYT\", \"value\": \"MYT\"}, {\"name\": \"NAM\", \"value\": \"NAM\"}, {\"name\": \"NCL\", \"value\": \"NCL\"}, {\"name\": \"NER\", \"value\": \"NER\"}, {\"name\": \"NFK\", \"value\": \"NFK\"}, {\"name\": \"NGA\", \"value\": \"NGA\"}, {\"name\": \"NIC\", \"value\": \"NIC\"}, {\"name\": \"NIU\", \"value\": \"NIU\"}, {\"name\": \"NLD\", \"value\": \"NLD\"}, {\"name\": \"NOR\", \"value\": \"NOR\"}, {\"name\": \"NPL\", \"value\": \"NPL\"}, {\"name\": \"NRU\", \"value\": \"NRU\"}, {\"name\": \"NZL\", \"value\": \"NZL\"}, {\"name\": \"OMN\", \"value\": \"OMN\"}, {\"name\": \"PAK\", \"value\": \"PAK\"}, {\"name\": \"PAN\", \"value\": \"PAN\"}, {\"name\": \"PCN\", \"value\": \"PCN\"}, {\"name\": \"PER\", \"value\": \"PER\"}, {\"name\": \"PHL\", \"value\": \"PHL\"}, {\"name\": \"PLW\", \"value\": \"PLW\"}, {\"name\": \"PNG\", \"value\": \"PNG\"}, {\"name\": \"POL\", \"value\": \"POL\"}, {\"name\": \"PRI\", \"value\": \"PRI\"}, {\"name\": \"PRK\", \"value\": \"PRK\"}, {\"name\": \"PRT\", \"value\": \"PRT\"}, {\"name\": \"PRY\", \"value\": \"PRY\"}, {\"name\": \"PSE\", \"value\": \"PSE\"}, {\"name\": \"PYF\", \"value\": \"PYF\"}, {\"name\": \"QAT\", \"value\": \"QAT\"}, {\"name\": \"REU\", \"value\": \"REU\"}, {\"name\": \"ROU\", \"value\": \"ROU\"}, {\"name\": \"RUS\", \"value\": \"RUS\"}, {\"name\": \"RWA\", \"value\": \"RWA\"}, {\"name\": \"SAU\", \"value\": \"SAU\"}, {\"name\": \"SDN\", \"value\": \"SDN\"}, {\"name\": \"SEN\", \"value\": \"SEN\"}, {\"name\": \"SGP\", \"value\": \"SGP\"}, {\"name\": \"SGS\", \"value\": \"SGS\"}, {\"name\": \"SHN\", \"value\": \"SHN\"}, {\"name\": \"SJM\", \"value\": \"SJM\"}, {\"name\": \"SLB\", \"value\": \"SLB\"}, {\"name\": \"SLE\", \"value\": \"SLE\"}, {\"name\": \"SLV\", \"value\": \"SLV\"}, {\"name\": \"SMR\", \"value\": \"SMR\"}, {\"name\": \"SOM\", \"value\": \"SOM\"}, {\"name\": \"SPM\", \"value\": \"SPM\"}, {\"name\": \"SRB\", \"value\": \"SRB\"}, {\"name\": \"SSD\", \"value\": \"SSD\"}, {\"name\": \"STP\", \"value\": \"STP\"}, {\"name\": \"SUR\", \"value\": \"SUR\"}, {\"name\": \"SVK\", \"value\": \"SVK\"}, {\"name\": \"SVN\", \"value\": \"SVN\"}, {\"name\": \"SWE\", \"value\": \"SWE\"}, {\"name\": \"SWZ\", \"value\": \"SWZ\"}, {\"name\": \"SXM\", \"value\": \"SXM\"}, {\"name\": \"SYC\", \"value\": \"SYC\"}, {\"name\": \"SYR\", \"value\": \"SYR\"}, {\"name\": \"TCA\", \"value\": \"TCA\"}, {\"name\": \"TCD\", \"value\": \"TCD\"}, {\"name\": \"TGO\", \"value\": \"TGO\"}, {\"name\": \"THA\", \"value\": \"THA\"}, {\"name\": \"TJK\", \"value\": \"TJK\"}, {\"name\": \"TKL\", \"value\": \"TKL\"}, {\"name\": \"TKM\", \"value\": \"TKM\"}, {\"name\": \"TLS\", \"value\": \"TLS\"}, {\"name\": \"TON\", \"value\": \"TON\"}, {\"name\": \"TTO\", \"value\": \"TTO\"}, {\"name\": \"TUN\", \"value\": \"TUN\"}, {\"name\": \"TUR\", \"value\": \"TUR\"}, {\"name\": \"TUV\", \"value\": \"TUV\"}, {\"name\": \"TWN\", \"value\": \"TWN\"}, {\"name\": \"TZA\", \"value\": \"TZA\"}, {\"name\": \"UGA\", \"value\": \"UGA\"}, {\"name\": \"UKR\", \"value\": \"UKR\"}, {\"name\": \"UMI\", \"value\": \"UMI\"}, {\"name\": \"URY\", \"value\": \"URY\"}, {\"name\": \"USA\", \"value\": \"USA\"}, {\"name\": \"UZB\", \"value\": \"UZB\"}, {\"name\": \"VAT\", \"value\": \"VAT\"}, {\"name\": \"VCT\", \"value\": \"VCT\"}, {\"name\": \"VEN\", \"value\": \"VEN\"}, {\"name\": \"VGB\", \"value\": \"VGB\"}, {\"name\": \"VIR\", \"value\": \"VIR\"}, {\"name\": \"VNM\", \"value\": \"VNM\"}, {\"name\": \"VUT\", \"value\": \"VUT\"}, {\"name\": \"WLF\", \"value\": \"WLF\"}, {\"name\": \"WSM\", \"value\": \"WSM\"}, {\"name\": \"YEM\", \"value\": \"YEM\"}, {\"name\": \"ZAF\", \"value\": \"ZAF\"}, {\"name\": \"ZMB\", \"value\": \"ZMB\"}, {\"name\": \"ZWE\", \"value\": \"ZWE\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Country\", \"ja\": \"開催国\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Conference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference\", \"ja\": \"会議記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617620223087\", \"items\": [{\"key\": \"item_1617620223087[].subitem_heading_banner_headline\", \"type\": \"text\", \"title\": \"大見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"大見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_headline\", \"type\": \"text\", \"title\": \"小見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subheading\", \"ja\": \"小見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Heading\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591601\", \"items\": [{\"key\": \"item_1698591601[].original_language\", \"type\": \"text\", \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591602\", \"items\": [{\"key\": \"item_1698591602[].volume_title\", \"type\": \"text\", \"title\": \"Edition\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591602[].volume_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"部編名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_type\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors[].contributor_names\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name\", \"type\": \"text\", \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"提供機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_identifiers\", \"items\": [{\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier_type\", \"type\": \"select\", \"title\": \"Identifier Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier\", \"type\": \"text\", \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_titles\", \"items\": [{\"key\": \"item_1698591603[].catalog_titles[].catalog_title\", \"type\": \"text\", \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_titles[].catalog_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_descriptions\", \"items\": [{\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_type\", \"type\": \"select\", \"title\": \"Description Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description\", \"type\": \"textarea\", \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_subjects\", \"items\": [{\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject\", \"type\": \"text\", \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_scheme\", \"type\": \"select\", \"title\": \"Subject Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_uri\", \"type\": \"text\", \"title\": \"Subject URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_licenses\", \"items\": [{\"key\": \"item_1698591603[].catalog_licenses[].catalog_license\", \"type\": \"text\", \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_type\", \"type\": \"select\", \"title\": \"License Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"file\", \"value\": \"file\"}, {\"name\": \"metadata\", \"value\": \"metadata\"}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_rights[].catalog_right\", \"type\": \"text\", \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_access_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591603[].catalog_file.catalog_file_uri\", \"type\": \"text\", \"title\": \"File URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file.catalog_file_object_type\", \"type\": \"select\", \"title\": \"Object Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"カタログ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Catalog\", \"ja\": \"カタログ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591604\", \"items\": [{\"key\": \"item_1698591604[].jpcoar_format\", \"type\": \"text\", \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591604[].jpcoar_format_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591605\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591605[].jpcoar_dataset_series\", \"type\": \"select\", \"title\": \"Dataset Series\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"True\", \"value\": \"True\"}, {\"name\": \"False\", \"value\": \"False\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"データセットシリーズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591606\", \"items\": [{\"key\": \"item_1698591606[].edition\", \"type\": \"text\", \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591606[].edition_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591607[].holding_agent_names\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name\", \"type\": \"text\", \"title\": \"所蔵機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_value\", \"type\": \"text\", \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_scheme\", \"type\": \"select\", \"title\": \"所蔵機関識別子スキーマ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"FANO\", \"value\": \"FANO\"}, {\"name\": \"ISIL\", \"value\": \"ISIL\"}, {\"name\": \"MARC\", \"value\": \"MARC\"}, {\"name\": \"OCLC\", \"value\": \"OCLC\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_uri\", \"type\": \"text\", \"title\": \"所蔵機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591608\", \"items\": [{\"key\": \"item_1698591608[].subitem_dcterms_date\", \"type\": \"text\", \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591608[].subitem_dcterms_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date(Literal)\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591609\", \"items\": [{\"key\": \"item_1698591609[].dcterms_extent\", \"type\": \"text\", \"title\": \"Extent\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591609[].dcterms_extent_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"大きさ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591610[].publisher_names\", \"items\": [{\"key\": \"item_1698591610[].publisher_names[].publisher_name\", \"type\": \"text\", \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_names[].publisher_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_descriptions\", \"items\": [{\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description\", \"type\": \"text\", \"title\": \"出版者注記\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_locations\", \"items\": [{\"key\": \"item_1698591610[].publisher_locations[].publisher_location\", \"type\": \"text\", \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publication_places\", \"items\": [{\"key\": \"item_1698591610[].publication_places[].publication_place\", \"type\": \"text\", \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Information\", \"ja\": \"出版者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802\", \"items\": [{\"key\": \"item_1718082005802[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"isHide\": false, \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1718082005802[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"file-text-url\", \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"isHide\": false, \"feedback\": false, \"required\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].filesize\", \"items\": [{\"key\": \"item_1718082005802[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].fileDate\", \"items\": [{\"key\": \"item_1718082005802[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].licensetype == ''license_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"isHide\": false, \"default\": \"open_restricted\", \"required\": false, \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}, {\"name\": \"制限公開\", \"value\": \"open_restricted\", \"name_i18n\": {\"en\": \"Limited Access\", \"ja\": \"制限公開\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].roles\", \"items\": [{\"key\": \"item_1718082005802[].roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date'' || model.item_1718082005802[arrayIndex].accessrole == ''open_login''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].provide\", \"items\": [{\"key\": \"item_1718082005802[].provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"WorkFlow\", \"ja\": \"ワークフロー\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].terms\", \"type\": \"select\", \"title\": \"利用規約\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted'' && model.item_1718082005802[arrayIndex].terms== ''term_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Restricted File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}]", + "render": "{\"meta_fix\": {\"pubdate\": {\"title\": \"PubDate\", \"option\": {\"crtf\": false, \"hidden\": false, \"multiple\": false, \"required\": true, \"showlist\": false}, \"input_type\": \"datetime\", \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"input_value\": \"\"}}, \"meta_list\": {\"item_1698591601\": {\"title\": \"原文の言語\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1052\", \"title_i18n\": {\"en\": \"\", \"ja\": \"原文の言語\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591602\": {\"title\": \"部編名\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1051\", \"title_i18n\": {\"en\": \"\", \"ja\": \"部編名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591603\": {\"title\": \"カタログ\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1057\", \"title_i18n\": {\"en\": \"\", \"ja\": \"カタログ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591604\": {\"title\": \"物理的形態\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1054\", \"title_i18n\": {\"en\": \"\", \"ja\": \"物理的形態\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591605\": {\"title\": \"データセットシリーズ\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1056\", \"title_i18n\": {\"en\": \"\", \"ja\": \"データセットシリーズ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591606\": {\"title\": \"版\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1050\", \"title_i18n\": {\"en\": \"\", \"ja\": \"版\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591607\": {\"title\": \"所蔵機関\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1055\", \"title_i18n\": {\"en\": \"\", \"ja\": \"所蔵機関\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591608\": {\"title\": \"日付(リテラル)\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1049\", \"title_i18n\": {\"en\": \"\", \"ja\": \"日付(リテラル)\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591609\": {\"title\": \"大きさ\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1053\", \"title_i18n\": {\"en\": \"\", \"ja\": \"大きさ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1698591610\": {\"title\": \"出版者情報\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1048\", \"title_i18n\": {\"en\": \"\", \"ja\": \"出版者情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186331708\": {\"title\": \"Title\", \"option\": {\"crtf\": true, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": true, \"showlist\": true}, \"input_type\": \"cus_1001\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186385884\": {\"title\": \"Alternative Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1002\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186419668\": {\"title\": \"Creator\", \"option\": {\"crtf\": true, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1038\", \"title_i18n\": {\"en\": \"Creator\", \"ja\": \"作成者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186476635\": {\"title\": \"Access Rights\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1005\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186499011\": {\"title\": \"Rights\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1007\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186609386\": {\"title\": \"Subject\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1009\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186626617\": {\"title\": \"Description\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1010\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186643794\": {\"title\": \"Publisher\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1011\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186660861\": {\"title\": \"Date\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1012\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186702042\": {\"title\": \"Language\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1003\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186783814\": {\"title\": \"Identifier\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1017\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186819068\": {\"title\": \"Identifier Registration\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1018\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186859717\": {\"title\": \"Temporal\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1020\", \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186882738\": {\"title\": \"Geo Location\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1021\", \"title_i18n\": {\"en\": \"Geo Location\", \"ja\": \"位置情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186901218\": {\"title\": \"Funding Reference\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1022\", \"title_i18n\": {\"en\": \"Funding Reference\", \"ja\": \"助成情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186920753\": {\"title\": \"Source Identifier\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1023\", \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186941041\": {\"title\": \"Source Title\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1024\", \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186959569\": {\"title\": \"Volume Number\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1025\", \"title_i18n\": {\"en\": \"Volume Number\", \"ja\": \"巻\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186981471\": {\"title\": \"Issue Number\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1026\", \"title_i18n\": {\"en\": \"Issue Number\", \"ja\": \"号\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617186994930\": {\"title\": \"Number of Pages\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_126\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187024783\": {\"title\": \"Page Start\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1028\", \"title_i18n\": {\"en\": \"Page Start\", \"ja\": \"開始ページ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187045071\": {\"title\": \"Page End\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1029\", \"title_i18n\": {\"en\": \"Page End\", \"ja\": \"終了ページ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187056579\": {\"title\": \"Bibliographic Information\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1027\", \"title_i18n\": {\"en\": \"Bibliographic Information\", \"ja\": \"書誌情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187087799\": {\"title\": \"Dissertation Number\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1030\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187112279\": {\"title\": \"Degree Name\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1031\", \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187136212\": {\"title\": \"Date Granted\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1032\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617187187528\": {\"title\": \"Conference\", \"option\": {\"crtf\": true, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1034\", \"title_i18n\": {\"en\": \"Conference\", \"ja\": \"会議記述\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617258105262\": {\"title\": \"Resource Type\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": true, \"showlist\": false}, \"input_type\": \"cus_1014\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617265215918\": {\"title\": \"Version Type\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1016\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617349709064\": {\"title\": \"Contributor\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1039\", \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"寄与者\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617349808926\": {\"title\": \"Version\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1015\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617351524846\": {\"title\": \"APC\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1006\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617353299429\": {\"title\": \"Relation\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1019\", \"title_i18n\": {\"en\": \"Relation\", \"ja\": \"関連情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617610673286\": {\"title\": \"Rights Holder\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1008\", \"title_i18n\": {\"en\": \"Rights Holder\", \"ja\": \"権利者情報\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617620223087\": {\"title\": \"Heading\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_1041\", \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"見出し\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1617944105607\": {\"title\": \"Degree Grantor\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_1033\", \"title_i18n\": {\"en\": \"Degree Grantor\", \"ja\": \"学位授与機関\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}, \"item_1718082005802\": {\"title\": \"Restricted File\", \"option\": {\"crtf\": false, \"hidden\": false, \"oneline\": false, \"multiple\": true, \"required\": false, \"showlist\": true}, \"input_type\": \"cus_30015\", \"title_i18n\": {\"en\": \"Restricted File\", \"ja\": \"制限公開ファイル\"}, \"input_value\": \"\", \"input_maxItems\": \"9999\", \"input_minItems\": \"1\"}}, \"table_row\": [\"item_1617186331708\", \"item_1617186385884\", \"item_1617186419668\", \"item_1617349709064\", \"item_1617186476635\", \"item_1617351524846\", \"item_1617186499011\", \"item_1617610673286\", \"item_1617186609386\", \"item_1617186626617\", \"item_1617186643794\", \"item_1617186660861\", \"item_1617186702042\", \"item_1617258105262\", \"item_1617349808926\", \"item_1617265215918\", \"item_1617186783814\", \"item_1617186819068\", \"item_1617353299429\", \"item_1617186859717\", \"item_1617186882738\", \"item_1617186901218\", \"item_1617186920753\", \"item_1617186941041\", \"item_1617186959569\", \"item_1617186981471\", \"item_1617186994930\", \"item_1617187024783\", \"item_1617187045071\", \"item_1617187056579\", \"item_1617187087799\", \"item_1617187112279\", \"item_1617187136212\", \"item_1617944105607\", \"item_1617187187528\", \"item_1617620223087\", \"item_1698591601\", \"item_1698591602\", \"item_1698591603\", \"item_1698591604\", \"item_1698591605\", \"item_1698591606\", \"item_1698591607\", \"item_1698591608\", \"item_1698591609\", \"item_1698591610\", \"item_1718082005802\"], \"edit_notes\": {\"item_1698591601\": \"\", \"item_1698591602\": \"\", \"item_1698591603\": \"\", \"item_1698591604\": \"\", \"item_1698591605\": \"\", \"item_1698591606\": \"\", \"item_1698591607\": \"\", \"item_1698591608\": \"\", \"item_1698591609\": \"\", \"item_1698591610\": \"\", \"item_1617186331708\": \"\", \"item_1617186385884\": \"\", \"item_1617186419668\": \"\", \"item_1617186476635\": \"\", \"item_1617186499011\": \"\", \"item_1617186609386\": \"\", \"item_1617186626617\": \"\", \"item_1617186643794\": \"\", \"item_1617186660861\": \"\", \"item_1617186702042\": \"\", \"item_1617186783814\": \"\", \"item_1617186819068\": \"\", \"item_1617186859717\": \"\", \"item_1617186882738\": \"\", \"item_1617186901218\": \"\", \"item_1617186920753\": \"\", \"item_1617186941041\": \"\", \"item_1617186959569\": \"\", \"item_1617186981471\": \"\", \"item_1617186994930\": \"\", \"item_1617187024783\": \"\", \"item_1617187045071\": \"\", \"item_1617187056579\": \"\", \"item_1617187087799\": \"\", \"item_1617187112279\": \"\", \"item_1617187136212\": \"\", \"item_1617187187528\": \"\", \"item_1617258105262\": \"\", \"item_1617265215918\": \"\", \"item_1617349709064\": \"\", \"item_1617349808926\": \"\", \"item_1617351524846\": \"\", \"item_1617353299429\": \"\", \"item_1617610673286\": \"\", \"item_1617620223087\": \"\", \"item_1617944105607\": \"\", \"item_1718082005802\": \"\"}, \"meta_system\": {\"system_file\": {\"title\": \"File Information\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_125\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}, \"input_value\": \"\"}, \"system_identifier_doi\": {\"title\": \"Persistent Identifier(DOI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_123\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}, \"input_value\": \"\"}, \"system_identifier_hdl\": {\"title\": \"Persistent Identifier(HDL)\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_123\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}, \"input_value\": \"\"}, \"system_identifier_uri\": {\"title\": \"Persistent Identifier(URI)\", \"option\": {\"crtf\": false, \"hidden\": true, \"oneline\": false, \"multiple\": false, \"required\": false, \"showlist\": false}, \"input_type\": \"cus_123\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}, \"input_value\": \"\"}}, \"upload_file\": false, \"schemaeditor\": {\"schema\": {\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\", \"item_1617186331708\", \"item_1617258105262\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1698591601\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"original_language\", \"format\": \"object\", \"properties\": {\"original_language\": {\"type\": \"string\", \"title\": \"Original Language\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"原文の言語\"}}}}, \"title\": \"原文の言語\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591602\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"volume_title\", \"format\": \"object\", \"properties\": {\"volume_title\": {\"type\": \"string\", \"title\": \"部編名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}}, \"volume_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"部編名\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591603\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"catalog\", \"format\": \"object\", \"properties\": {\"catalog_file\": {\"type\": \"object\", \"title\": \"File\", \"format\": \"object\", \"properties\": {\"catalog_file_uri\": {\"type\": \"string\", \"title\": \"File URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}}, \"catalog_file_object_type\": {\"enum\": [null, \"thumbnail\"], \"type\": \"string\", \"title\": \"Object Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}}}}, \"catalog_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_right\": {\"type\": \"string\", \"title\": \"Rights\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}}, \"catalog_right_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_right_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"Rights\", \"format\": \"array\"}, \"catalog_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_title\": {\"type\": \"string\", \"title\": \"Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"catalog_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"format\": \"array\"}, \"catalog_licenses\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_license\": {\"type\": \"string\", \"title\": \"License\", \"format\": \"text\", \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, \"catalog_license_type\": {\"enum\": [null, \"file\", \"metadata\", \"thumbnail\"], \"type\": [\"null\", \"string\"], \"title\": \"License Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}}, \"catalog_license_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_license_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"License\", \"format\": \"array\"}, \"catalog_subjects\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_subject\": {\"type\": \"string\", \"title\": \"Subject\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"catalog_subject_uri\": {\"type\": \"string\", \"title\": \"Subject URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"catalog_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Subject Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}}, \"catalog_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"format\": \"array\"}, \"catalog_identifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_identifier\": {\"type\": \"string\", \"title\": \"Identifier\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}}, \"catalog_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"Identifier Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}}}}, \"title\": \"Identifier\", \"format\": \"array\"}, \"catalog_contributors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_type\": {\"enum\": [null, \"HostingInstitution\"], \"type\": [\"null\", \"string\"], \"title\": \"Contributor Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}}, \"contributor_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_name\": {\"type\": \"string\", \"title\": \"Contributor Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}}, \"contributor_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Contributor Name\", \"format\": \"array\"}}}, \"title\": \"Contributor\", \"format\": \"array\"}, \"catalog_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_description\": {\"type\": \"string\", \"title\": \"Description\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}}, \"catalog_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Description Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}}, \"catalog_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}}}}, \"title\": \"Descriptions\", \"format\": \"array\"}, \"catalog_access_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"アクセス権\", \"properties\": {\"catalog_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"catalog_access_right_rdf_resource\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"title\": \"Access Rights\", \"format\": \"array\"}}}, \"title\": \"カタログ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591604\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"jpcoar_format\", \"format\": \"object\", \"properties\": {\"jpcoar_format\": {\"type\": \"string\", \"title\": \"物理的形態\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}}, \"jpcoar_format_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"物理的形態\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591605\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"データセットシリーズ\", \"format\": \"object\", \"properties\": {\"jpcoar_dataset_series\": {\"enum\": [null, \"True\", \"False\"], \"type\": [\"null\", \"string\"], \"title\": \"Dataset Series\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}}}}, \"title\": \"データセットシリーズ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591606\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"edition\", \"format\": \"object\", \"properties\": {\"edition\": {\"type\": \"string\", \"title\": \"版\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}}, \"edition_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"版\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"holding_agent_name\", \"format\": \"object\", \"properties\": {\"holding_agent_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"holding_agent_name\": {\"type\": \"string\", \"title\": \"所蔵機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}}, \"holding_agent_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所蔵機関名\", \"format\": \"array\"}, \"holding_agent_name_identifier\": {\"type\": \"object\", \"title\": \"所蔵機関識別子\", \"format\": \"object\", \"properties\": {\"holding_agent_name_identifier_uri\": {\"type\": \"string\", \"title\": \"所蔵機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}}, \"holding_agent_name_identifier_value\": {\"type\": \"string\", \"title\": \"所蔵機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}}, \"holding_agent_name_identifier_scheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"], \"type\": \"string\", \"title\": \"所蔵機関識別子スキーマ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"currentEnum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"]}}}}}, \"title\": \"所蔵機関\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591608\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_date\", \"format\": \"object\", \"properties\": {\"subitem_dcterms_date\": {\"type\": \"string\", \"title\": \"日付(リテラル)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}}, \"subitem_dcterms_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}, \"system_prop\": false}, \"title\": \"日付(リテラル)\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591609\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_extent\", \"format\": \"object\", \"properties\": {\"dcterms_extent\": {\"type\": \"string\", \"title\": \"Extent\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}}, \"dcterms_extent_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"大きさ\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1698591610\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"publisher_information\", \"format\": \"object\", \"properties\": {\"publisher_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_name\": {\"type\": \"string\", \"title\": \"出版者名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}}, \"publisher_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者名\", \"format\": \"array\"}, \"publication_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publication_place\": {\"type\": \"string\", \"title\": \"出版地(国名コード)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}}}}, \"title\": \"出版地(国名コード)\", \"format\": \"array\"}, \"publisher_locations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_location\": {\"type\": \"string\", \"title\": \"出版地\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}}}}, \"title\": \"出版地\", \"format\": \"array\"}, \"publisher_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_description\": {\"type\": \"string\", \"title\": \"出版者注記\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}}, \"publisher_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者注記\", \"format\": \"array\"}}}, \"title\": \"出版者情報\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186331708\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"required\": [\"subitem_title\", \"subitem_title_language\"], \"properties\": {\"subitem_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"subitem_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186385884\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_alternative_title\": {\"type\": \"string\", \"title\": \"その他のタイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}}, \"subitem_alternative_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Alternative Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186419668\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"iscreator\": {\"type\": \"string\", \"title\": \"iscreator\", \"format\": \"text\"}, \"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者名\", \"format\": \"array\"}, \"creatorType\": {\"type\": \"string\", \"title\": \"作成者タイプ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者姓\", \"format\": \"array\"}, \"creatorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"作成者メールアドレス\", \"format\": \"array\"}, \"creatorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}, \"creatorNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"creatorNameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"currentEnum\": [\"Personal\", \"Organizational\"]}}}, \"title\": \"作成者姓名\", \"format\": \"array\"}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"作成者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"作成者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"作成者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"IdentifierScheme\", \"ja\": \"作成者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"作成者識別子\", \"format\": \"array\"}, \"creatorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"affiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"affiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}}, \"affiliationNameIdentifierURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"affiliationNameIdentifierScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"作成者所属\", \"format\": \"array\"}, \"creatorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"creatorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Creator\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186476635\": {\"type\": \"object\", \"title\": \"Access Rights\", \"format\": \"object\", \"properties\": {\"subitem_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"subitem_access_right_uri\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"item_1617186499011\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_rights\": {\"type\": \"string\", \"title\": \"権利情報\", \"format\": \"text\"}, \"subitem_rights_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_rights_resource\": {\"type\": \"string\", \"title\": \"権利情報Resource\", \"format\": \"text\"}}}, \"title\": \"Rights\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186609386\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_subject\": {\"type\": \"string\", \"title\": \"主題\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"subitem_subject_uri\": {\"type\": \"string\", \"title\": \"主題URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"subitem_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"主題Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"currentEnum\": [\"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"]}, \"subitem_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186626617\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_description\": {\"type\": \"string\", \"title\": \"内容記述\", \"format\": \"textarea\"}, \"subitem_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"内容記述タイプ\", \"format\": \"select\", \"currentEnum\": [\"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"]}, \"subitem_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Description\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186643794\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_publisher\": {\"type\": \"string\", \"title\": \"出版者\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}}, \"subitem_publisher_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Publisher\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186660861\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_date_issued_type\": {\"enum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"subitem_date_issued_datetime\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}}}, \"title\": \"Date\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186702042\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_language\": {\"enum\": [null, \"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"]}}}, \"title\": \"Language\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186783814\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_identifier_uri\": {\"type\": \"string\", \"title\": \"識別子\", \"format\": \"text\"}, \"subitem_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186819068\": {\"type\": \"object\", \"title\": \"Identifier Registration\", \"format\": \"object\", \"properties\": {\"subitem_identifier_reg_text\": {\"type\": \"string\", \"title\": \"ID登録\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}}, \"subitem_identifier_reg_type\": {\"enum\": [null, \"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"], \"type\": [\"null\", \"string\"], \"title\": \"ID登録タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"currentEnum\": [\"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"]}}}, \"item_1617186859717\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_temporal_text\": {\"type\": \"string\", \"title\": \"時間的範囲\", \"format\": \"text\"}, \"subitem_temporal_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Temporal\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186882738\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_box\": {\"type\": \"object\", \"title\": \"位置情報(空間)\", \"format\": \"object\", \"properties\": {\"subitem_east_longitude\": {\"type\": \"string\", \"title\": \"東部経度\", \"format\": \"text\"}, \"subitem_north_latitude\": {\"type\": \"string\", \"title\": \"北部緯度\", \"format\": \"text\"}, \"subitem_south_latitude\": {\"type\": \"string\", \"title\": \"南部緯度\", \"format\": \"text\"}, \"subitem_west_longitude\": {\"type\": \"string\", \"title\": \"西部経度\", \"format\": \"text\"}}}, \"subitem_geolocation_place\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_place_text\": {\"type\": \"string\", \"title\": \"位置情報(自由記述)\", \"format\": \"text\"}}}, \"title\": \"位置情報(自由記述)\", \"format\": \"array\"}, \"subitem_geolocation_point\": {\"type\": \"object\", \"title\": \"位置情報(点)\", \"format\": \"object\", \"properties\": {\"subitem_point_latitude\": {\"type\": \"string\", \"title\": \"緯度\", \"format\": \"text\"}, \"subitem_point_longitude\": {\"type\": \"string\", \"title\": \"経度\", \"format\": \"text\"}}}}}, \"title\": \"Geo Location\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186901218\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_title\": {\"type\": \"string\", \"title\": \"研究課題名\", \"format\": \"text\"}, \"subitem_award_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"研究課題名\", \"format\": \"array\"}, \"subitem_funder_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funder_name\": {\"type\": \"string\", \"title\": \"助成機関名\", \"format\": \"text\"}, \"subitem_funder_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"助成機関名\", \"format\": \"array\"}, \"subitem_award_numbers\": {\"type\": \"object\", \"title\": \"研究課題番号\", \"format\": \"object\", \"properties\": {\"subitem_award_uri\": {\"type\": \"string\", \"title\": \"研究課題番号URI\", \"format\": \"text\"}, \"subitem_award_number\": {\"type\": \"string\", \"title\": \"研究課題番号\", \"format\": \"text\"}, \"subitem_award_number_type\": {\"enum\": [null, \"JGN\"], \"type\": [\"null\", \"string\"], \"title\": \"研究課題番号タイプ\", \"format\": \"select\"}}}, \"subitem_funding_streams\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream\": {\"type\": \"string\", \"title\": \"プログラム情報\", \"format\": \"text\"}, \"subitem_funding_stream_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"プログラム情報\", \"format\": \"array\"}, \"subitem_funder_identifiers\": {\"type\": \"object\", \"title\": \"助成機関識別子\", \"format\": \"object\", \"properties\": {\"subitem_funder_identifier\": {\"type\": \"string\", \"title\": \"助成機関識別子\", \"format\": \"text\"}, \"subitem_funder_identifier_type\": {\"enum\": [null, \"Crossref Funder\", \"e-Rad_funder\", \"GRID\", \"ISNI\", \"ROR\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"助成機関識別子タイプ\", \"format\": \"select\"}, \"subitem_funder_identifier_type_uri\": {\"type\": \"string\", \"title\": \"助成機関識別子タイプURI\", \"format\": \"text\"}}}, \"subitem_funding_stream_identifiers\": {\"type\": \"object\", \"title\": \"プログラム情報識別子\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream_identifier\": {\"type\": \"string\", \"title\": \"プログラム情報識別子\", \"format\": \"text\"}, \"subitem_funding_stream_identifier_type\": {\"enum\": [\"Crossref Funder\", \"JGN_fundingStream\"], \"type\": [\"null\", \"string\"], \"title\": \"プログラム情報識別子タイプ\", \"format\": \"select\"}, \"subitem_funding_stream_identifier_type_uri\": {\"type\": \"string\", \"title\": \"プログラム情報識別子タイプURI\", \"format\": \"text\"}}}}}, \"title\": \"Funding Reference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186920753\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_identifier\": {\"type\": \"string\", \"title\": \"収録物識別子\", \"format\": \"text\"}, \"subitem_source_identifier_type\": {\"enum\": [null, \"PISSN\", \"EISSN\", \"ISSN\", \"NCID\"], \"type\": [\"null\", \"string\"], \"title\": \"収録物識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Source Identifier\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186941041\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_title\": {\"type\": \"string\", \"title\": \"収録物名\", \"format\": \"text\"}, \"subitem_source_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Source Title\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617186959569\": {\"type\": \"object\", \"title\": \"Volume Number\", \"format\": \"object\", \"properties\": {\"subitem_volume\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}}}}, \"item_1617186981471\": {\"type\": \"object\", \"title\": \"Issue Number\", \"format\": \"object\", \"properties\": {\"subitem_issue\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}}}}, \"item_1617186994930\": {\"type\": \"object\", \"title\": \"Number of Pages\", \"format\": \"object\", \"properties\": {\"subitem_number_of_pages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}}}}, \"item_1617187024783\": {\"type\": \"object\", \"title\": \"Page Start\", \"format\": \"object\", \"properties\": {\"subitem_start_page\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}}}}, \"item_1617187045071\": {\"type\": \"object\", \"title\": \"Page End\", \"format\": \"object\", \"properties\": {\"subitem_end_page\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}}}}, \"item_1617187056579\": {\"type\": \"object\", \"title\": \"Bibliographic Information\", \"format\": \"object\", \"properties\": {\"bibliographicPageEnd\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\"}, \"bibliographic_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"bibliographic_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\"}, \"bibliographic_titleLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"雑誌名\", \"format\": \"array\"}, \"bibliographicPageStart\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\"}, \"bibliographicIssueDates\": {\"type\": \"object\", \"title\": \"発行日\", \"format\": \"object\", \"properties\": {\"bibliographicIssueDate\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}, \"bibliographicIssueDateType\": {\"enum\": [null, \"\", \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"\", \"Issued\"]}}}, \"bibliographicIssueNumber\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\"}, \"bibliographicVolumeNumber\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\"}, \"bibliographicNumberOfPages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1617187087799\": {\"type\": \"object\", \"title\": \"Dissertation Number\", \"format\": \"object\", \"properties\": {\"subitem_dissertationnumber\": {\"type\": \"string\", \"title\": \"学位授与番号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}}}}, \"item_1617187112279\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"学位名\", \"format\": \"object\", \"properties\": {\"subitem_degreename\": {\"type\": \"string\", \"title\": \"学位名\", \"format\": \"text\"}, \"subitem_degreename_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Degree Name\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617187136212\": {\"type\": \"object\", \"title\": \"Date Granted\", \"format\": \"object\", \"properties\": {\"subitem_dategranted\": {\"type\": \"string\", \"title\": \"学位授与年月日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}}}}, \"item_1617187187528\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_date\": {\"type\": \"object\", \"title\": \"開催期間\", \"format\": \"object\", \"properties\": {\"subitem_conference_period\": {\"type\": \"string\", \"title\": \"開催期間\", \"format\": \"text\"}, \"subitem_conference_end_day\": {\"type\": \"string\", \"title\": \"終了日\", \"format\": \"text\"}, \"subitem_conference_end_year\": {\"type\": \"string\", \"title\": \"終了年\", \"format\": \"text\"}, \"subitem_conference_end_month\": {\"type\": \"string\", \"title\": \"終了月\", \"format\": \"text\"}, \"subitem_conference_start_day\": {\"type\": \"string\", \"title\": \"開始日\", \"format\": \"text\"}, \"subitem_conference_start_year\": {\"type\": \"string\", \"title\": \"開始年\", \"format\": \"text\"}, \"subitem_conference_start_month\": {\"type\": \"string\", \"title\": \"開始月\", \"format\": \"text\"}, \"subitem_conference_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"subitem_conference_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_name\": {\"type\": \"string\", \"title\": \"会議名\", \"format\": \"text\"}, \"subitem_conference_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"会議名\", \"format\": \"array\"}, \"subitem_conference_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_place\": {\"type\": \"string\", \"title\": \"開催地\", \"format\": \"text\"}, \"subitem_conference_place_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催地\", \"format\": \"array\"}, \"subitem_conference_venues\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_venue\": {\"type\": \"string\", \"title\": \"開催会場\", \"format\": \"text\"}, \"subitem_conference_venue_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催会場\", \"format\": \"array\"}, \"subitem_conference_country\": {\"enum\": [null, \"JPN\", \"ABW\", \"AFG\", \"AGO\", \"AIA\", \"ALA\", \"ALB\", \"AND\", \"ARE\", \"ARG\", \"ARM\", \"ASM\", \"ATA\", \"ATF\", \"ATG\", \"AUS\", \"AUT\", \"AZE\", \"BDI\", \"BEL\", \"BEN\", \"BES\", \"BFA\", \"BGD\", \"BGR\", \"BHR\", \"BHS\", \"BIH\", \"BLM\", \"BLR\", \"BLZ\", \"BMU\", \"BOL\", \"BRA\", \"BRB\", \"BRN\", \"BTN\", \"BVT\", \"BWA\", \"CAF\", \"CAN\", \"CCK\", \"CHE\", \"CHL\", \"CHN\", \"CIV\", \"CMR\", \"COD\", \"COG\", \"COK\", \"COL\", \"COM\", \"CPV\", \"CRI\", \"CUB\", \"CUW\", \"CXR\", \"CYM\", \"CYP\", \"CZE\", \"DEU\", \"DJI\", \"DMA\", \"DNK\", \"DOM\", \"DZA\", \"ECU\", \"EGY\", \"ERI\", \"ESH\", \"ESP\", \"EST\", \"ETH\", \"FIN\", \"FJI\", \"FLK\", \"FRA\", \"FRO\", \"FSM\", \"GAB\", \"GBR\", \"GEO\", \"GGY\", \"GHA\", \"GIB\", \"GIN\", \"GLP\", \"GMB\", \"GNB\", \"GNQ\", \"GRC\", \"GRD\", \"GRL\", \"GTM\", \"GUF\", \"GUM\", \"GUY\", \"HKG\", \"HMD\", \"HND\", \"HRV\", \"HTI\", \"HUN\", \"IDN\", \"IMN\", \"IND\", \"IOT\", \"IRL\", \"IRN\", \"IRQ\", \"ISL\", \"ISR\", \"ITA\", \"JAM\", \"JEY\", \"JOR\", \"KAZ\", \"KEN\", \"KGZ\", \"KHM\", \"KIR\", \"KNA\", \"KOR\", \"KWT\", \"LAO\", \"LBN\", \"LBR\", \"LBY\", \"LCA\", \"LIE\", \"LKA\", \"LSO\", \"LTU\", \"LUX\", \"LVA\", \"MAC\", \"MAF\", \"MAR\", \"MCO\", \"MDA\", \"MDG\", \"MDV\", \"MEX\", \"MHL\", \"MKD\", \"MLI\", \"MLT\", \"MMR\", \"MNE\", \"MNG\", \"MNP\", \"MOZ\", \"MRT\", \"MSR\", \"MTQ\", \"MUS\", \"MWI\", \"MYS\", \"MYT\", \"NAM\", \"NCL\", \"NER\", \"NFK\", \"NGA\", \"NIC\", \"NIU\", \"NLD\", \"NOR\", \"NPL\", \"NRU\", \"NZL\", \"OMN\", \"PAK\", \"PAN\", \"PCN\", \"PER\", \"PHL\", \"PLW\", \"PNG\", \"POL\", \"PRI\", \"PRK\", \"PRT\", \"PRY\", \"PSE\", \"PYF\", \"QAT\", \"REU\", \"ROU\", \"RUS\", \"RWA\", \"SAU\", \"SDN\", \"SEN\", \"SGP\", \"SGS\", \"SHN\", \"SJM\", \"SLB\", \"SLE\", \"SLV\", \"SMR\", \"SOM\", \"SPM\", \"SRB\", \"SSD\", \"STP\", \"SUR\", \"SVK\", \"SVN\", \"SWE\", \"SWZ\", \"SXM\", \"SYC\", \"SYR\", \"TCA\", \"TCD\", \"TGO\", \"THA\", \"TJK\", \"TKL\", \"TKM\", \"TLS\", \"TON\", \"TTO\", \"TUN\", \"TUR\", \"TUV\", \"TWN\", \"TZA\", \"UGA\", \"UKR\", \"UMI\", \"URY\", \"USA\", \"UZB\", \"VAT\", \"VCT\", \"VEN\", \"VGB\", \"VIR\", \"VNM\", \"VUT\", \"WLF\", \"WSM\", \"YEM\", \"ZAF\", \"ZMB\", \"ZWE\"], \"type\": [\"null\", \"string\"], \"title\": \"開催国\", \"format\": \"select\"}, \"subitem_conference_sequence\": {\"type\": \"string\", \"title\": \"回次\", \"format\": \"text\"}, \"subitem_conference_sponsors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_sponsor\": {\"type\": \"string\", \"title\": \"主催機関\", \"format\": \"text\"}, \"subitem_conference_sponsor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"主催機関\", \"format\": \"array\"}}}, \"title\": \"Conference\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617258105262\": {\"type\": \"object\", \"title\": \"Resource Type\", \"format\": \"object\", \"required\": [\"resourceuri\", \"resourcetype\"], \"properties\": {\"resourceuri\": {\"type\": \"string\", \"title\": \"資源タイプ識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}}, \"resourcetype\": {\"enum\": [null, \"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"資源タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"currentEnum\": [\"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"]}}, \"system_prop\": true}, \"item_1617265215918\": {\"type\": \"object\", \"title\": \"Version Type\", \"format\": \"object\", \"properties\": {\"subitem_version_type\": {\"enum\": [null, \"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"], \"type\": [\"null\", \"string\"], \"title\": \"出版タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"currentEnum\": [\"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"]}, \"subitem_peer_reviewed\": {\"enum\": [null, \"Peer reviewed\", \"Not peer reviewed\"], \"type\": [\"null\", \"string\"], \"title\": \"査読の有無\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"currentEnum\": [\"Peer reviewed\", \"Not peer reviewed\"]}, \"subitem_version_resource\": {\"type\": \"string\", \"title\": \"出版タイプResource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}}}, \"system_prop\": true}, \"item_1617349709064\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者名\", \"format\": \"array\"}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者姓\", \"format\": \"array\"}, \"contributorType\": {\"enum\": [null, \"ContactPerson\", \"DataCollector\", \"DataCurator\", \"DataManager\", \"Distributor\", \"Editor\", \"HostingInstitution\", \"Producer\", \"ProjectLeader\", \"ProjectManager\", \"ProjectMember\", \"RelatedPerson\", \"Researcher\", \"ResearchGroup\", \"Sponsor\", \"Supervisor\", \"WorkPackageLeader\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"寄与者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"寄与者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"寄与者識別子\", \"format\": \"array\"}, \"contributorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"寄与者メールアドレス\", \"format\": \"array\"}, \"contributorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"lang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"nameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"editAble\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}}, \"contributorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}}}, \"title\": \"寄与者姓名\", \"format\": \"array\"}, \"contributorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"contributorAffiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"contributorAffiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"contributorAffiliationScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"currentEnum\": [\"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"]}, \"contributorAffiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"寄与者所属\", \"format\": \"array\"}, \"contributorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"contributorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Contributor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617349808926\": {\"type\": \"object\", \"title\": \"Version\", \"format\": \"object\", \"properties\": {\"subitem_version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}}}}, \"item_1617351524846\": {\"type\": \"object\", \"title\": \"APC\", \"format\": \"object\", \"properties\": {\"subitem_apc\": {\"enum\": [null, \"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"], \"type\": [\"null\", \"string\"], \"title\": \"APC\", \"format\": \"select\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"currentEnum\": [\"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"]}}}, \"item_1617353299429\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name_text\": {\"type\": \"string\", \"title\": \"関連名称\", \"format\": \"text\"}, \"subitem_relation_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"関連名称\", \"format\": \"array\"}, \"subitem_relation_type\": {\"enum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"], \"type\": [\"null\", \"string\"], \"title\": \"関連タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"]}, \"subitem_relation_type_id\": {\"type\": \"object\", \"title\": \"関連識別子\", \"format\": \"object\", \"properties\": {\"subitem_relation_type_select\": {\"enum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"]}, \"subitem_relation_type_id_text\": {\"type\": \"string\", \"title\": \"関連識別子\", \"format\": \"text\"}}}}}, \"title\": \"Relation\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617610673286\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"権利者識別子\", \"format\": \"text\"}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"権利者識別子URI\", \"format\": \"text\"}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"権利者識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"権利者識別子\", \"format\": \"array\"}, \"rightHolderNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"rightHolderName\": {\"type\": \"string\", \"title\": \"権利者名\", \"format\": \"text\"}, \"rightHolderLanguage\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"権利者名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Rights Holder\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617620223087\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_heading_headline\": {\"type\": \"string\", \"title\": \"小見出し\", \"format\": \"text\"}, \"subitem_heading_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_heading_banner_headline\": {\"type\": \"string\", \"title\": \"大見出し\", \"format\": \"text\"}}, \"system_prop\": true}, \"title\": \"Heading\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1617944105607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_name\": {\"type\": \"string\", \"title\": \"学位授与機関名\", \"format\": \"text\"}, \"subitem_degreegrantor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"学位授与機関名\", \"format\": \"array\"}, \"subitem_degreegrantor_identifier\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_identifier_name\": {\"type\": \"string\", \"title\": \"学位授与機関識別子\", \"format\": \"text\"}, \"subitem_degreegrantor_identifier_scheme\": {\"enum\": [null, \"kakenhi\"], \"type\": [\"null\", \"string\"], \"title\": \"学位授与機関識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"学位授与機関識別子\", \"format\": \"array\"}}}, \"title\": \"Degree Grantor\", \"maxItems\": 9999, \"minItems\": 1}, \"item_1718082005802\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\", \"currentEnum\": []}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\", \"currentEnum\": []}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\", \"open_restricted\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_restricted\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"Restricted File\", \"maxItems\": 9999, \"minItems\": 1}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}}, \"description\": \"\"}}, \"table_row_map\": {\"form\": [{\"key\": \"pubdate\", \"type\": \"template\", \"title\": \"PubDate\", \"format\": \"yyyy-MM-dd\", \"required\": true, \"title_i18n\": {\"en\": \"PubDate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"item_1617186331708\", \"items\": [{\"key\": \"item_1617186331708[].subitem_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186331708[].subitem_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186385884\", \"items\": [{\"key\": \"item_1617186385884[].subitem_alternative_title\", \"type\": \"text\", \"title\": \"その他のタイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186385884[].subitem_alternative_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Alternative Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668\", \"items\": [{\"key\": \"item_1617186419668[].creatorType\", \"type\": \"text\", \"title\": \"作成者タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"作成者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"e-Rad\", \"value\": \"e-Rad\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"WEKO\", \"value\": \"WEKO\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier Scheme\", \"ja\": \"作成者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"作成者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorNames[].creatorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorNames[].creatorNameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Name\", \"ja\": \"作成者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].familyNames\", \"items\": [{\"key\": \"item_1617186419668[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Family Name\", \"ja\": \"作成者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].givenNames\", \"items\": [{\"key\": \"item_1617186419668[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Given Name\", \"ja\": \"作成者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAlternatives\", \"items\": [{\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAlternatives[].creatorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Alternative Name\", \"ja\": \"作成者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames\", \"items\": [{\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"作成者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186419668[].creatorMails\", \"items\": [{\"key\": \"item_1617186419668[].creatorMails[].creatorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"作成者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator Email Address\", \"ja\": \"作成者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186419668[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617186419668'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Creator\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Creator\", \"ja\": \"作成者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064\", \"items\": [{\"key\": \"item_1617349709064[].contributorType\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ContactPerson\", \"value\": \"ContactPerson\"}, {\"name\": \"DataCollector\", \"value\": \"DataCollector\"}, {\"name\": \"DataCurator\", \"value\": \"DataCurator\"}, {\"name\": \"DataManager\", \"value\": \"DataManager\"}, {\"name\": \"Distributor\", \"value\": \"Distributor\"}, {\"name\": \"Editor\", \"value\": \"Editor\"}, {\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}, {\"name\": \"Producer\", \"value\": \"Producer\"}, {\"name\": \"ProjectLeader\", \"value\": \"ProjectLeader\"}, {\"name\": \"ProjectManager\", \"value\": \"ProjectManager\"}, {\"name\": \"ProjectMember\", \"value\": \"ProjectMember\"}, {\"name\": \"RelatedPerson\", \"value\": \"RelatedPerson\"}, {\"name\": \"Researcher\", \"value\": \"Researcher\"}, {\"name\": \"ResearchGroup\", \"value\": \"ResearchGroup\"}, {\"name\": \"Sponsor\", \"value\": \"Sponsor\"}, {\"name\": \"Supervisor\", \"value\": \"Supervisor\"}, {\"name\": \"WorkPackageLeader\", \"value\": \"WorkPackageLeader\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"寄与者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"寄与者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorNames[].contributorName\", \"type\": \"text\", \"title\": \"姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].lang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorNames[].nameType\", \"type\": \"select\", \"title\": \"名前タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Personal\", \"value\": \"Personal\"}, {\"name\": \"Organizational\", \"value\": \"Organizational\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"寄与者姓名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].familyNames\", \"items\": [{\"key\": \"item_1617349709064[].familyNames[].familyName\", \"type\": \"text\", \"title\": \"姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].familyNames[].familyNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者姓\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Family Name\", \"ja\": \"寄与者姓\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].givenNames\", \"items\": [{\"key\": \"item_1617349709064[].givenNames[].givenName\", \"type\": \"text\", \"title\": \"名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].givenNames[].givenNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Given Name\", \"ja\": \"寄与者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAlternatives\", \"items\": [{\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternative\", \"type\": \"text\", \"title\": \"別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAlternatives[].contributorAlternativeLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者別名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Alternative Name\", \"ja\": \"寄与者別名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationScheme\", \"type\": \"select\", \"title\": \"所属機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationNameIdentifier\", \"type\": \"text\", \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationURI\", \"type\": \"text\", \"title\": \"所属機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames\", \"items\": [{\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationName\", \"type\": \"text\", \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationNameLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所属機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation Names\", \"ja\": \"所属機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者所属\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Affiliation\", \"ja\": \"寄与者所属\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617349709064[].contributorMails\", \"items\": [{\"key\": \"item_1617349709064[].contributorMails[].contributorMail\", \"type\": \"text\", \"title\": \"メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"寄与者メールアドレス\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Email Address\", \"ja\": \"寄与者メールアドレス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349709064[].authorInputButton\", \"icon\": \"glyphicon glyphicon-search\", \"type\": \"button\", \"style\": \"btn-default pull-right m-top-5\", \"title\": \"著者DBから入力\", \"isHide\": false, \"onClick\": \"searchAuthor(''item_1617349709064[]'', true, form)\", \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Enter from DB\", \"ja\": \"著者DBから入力\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"寄与者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186476635.subitem_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186476635.subitem_access_right_uri\", \"type\": \"text\", \"title\": \"アクセス権URI\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617351524846\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617351524846.subitem_apc\", \"type\": \"select\", \"title\": \"APC\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Paid\", \"value\": \"Paid\"}, {\"name\": \"Partially waived\", \"value\": \"Partially waived\"}, {\"name\": \"Fully waived\", \"value\": \"Fully waived\"}, {\"name\": \"Not charged\", \"value\": \"Not charged\"}, {\"name\": \"Not required\", \"value\": \"Not required\"}, {\"name\": \"Unknown\", \"value\": \"Unknown\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"APC\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186499011\", \"items\": [{\"key\": \"item_1617186499011[].subitem_rights_resource\", \"type\": \"text\", \"title\": \"権利情報Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights Resource\", \"ja\": \"権利情報Resource\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights\", \"type\": \"text\", \"title\": \"権利情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186499011[].subitem_rights_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617610673286[].nameIdentifiers\", \"items\": [{\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierScheme\", \"type\": \"select\", \"title\": \"権利者識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"e-Rad_Researcher\", \"value\": \"e-Rad_Researcher\"}, {\"name\": \"NRID【非推奨】\", \"value\": \"NRID\"}, {\"name\": \"ORCID\", \"value\": \"ORCID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"VIAF\", \"value\": \"VIAF\"}, {\"name\": \"AID\", \"value\": \"AID\"}, {\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier Scheme\", \"ja\": \"権利者識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifier\", \"type\": \"text\", \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].nameIdentifiers[].nameIdentifierURI\", \"type\": \"text\", \"title\": \"権利者識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name Identifier URI\", \"ja\": \"権利者識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Identifier\", \"ja\": \"権利者識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617610673286[].rightHolderNames\", \"items\": [{\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderName\", \"type\": \"text\", \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617610673286[].rightHolderNames[].rightHolderLanguage\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"権利者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder Name\", \"ja\": \"権利者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights Holder\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Right Holder\", \"ja\": \"権利者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186609386\", \"items\": [{\"key\": \"item_1617186609386[].subitem_subject_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_scheme\", \"type\": \"select\", \"title\": \"主題Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject\", \"type\": \"text\", \"title\": \"主題\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186609386[].subitem_subject_uri\", \"type\": \"text\", \"title\": \"主題URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186626617\", \"items\": [{\"key\": \"item_1617186626617[].subitem_description_type\", \"type\": \"select\", \"title\": \"内容記述タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description\", \"type\": \"textarea\", \"title\": \"内容記述\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186626617[].subitem_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186643794\", \"items\": [{\"key\": \"item_1617186643794[].subitem_publisher\", \"type\": \"text\", \"title\": \"出版者\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186643794[].subitem_publisher_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186660861\", \"items\": [{\"key\": \"item_1617186660861[].subitem_date_issued_datetime\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186660861[].subitem_date_issued_type\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Date\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186702042\", \"items\": [{\"key\": \"item_1617186702042[].subitem_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"jpn\", \"value\": \"jpn\"}, {\"name\": \"eng\", \"value\": \"eng\"}, {\"name\": \"aar\", \"value\": \"aar\"}, {\"name\": \"abk\", \"value\": \"abk\"}, {\"name\": \"afr\", \"value\": \"afr\"}, {\"name\": \"aka\", \"value\": \"aka\"}, {\"name\": \"amh\", \"value\": \"amh\"}, {\"name\": \"ara\", \"value\": \"ara\"}, {\"name\": \"arg\", \"value\": \"arg\"}, {\"name\": \"asm\", \"value\": \"asm\"}, {\"name\": \"ava\", \"value\": \"ava\"}, {\"name\": \"ave\", \"value\": \"ave\"}, {\"name\": \"aym\", \"value\": \"aym\"}, {\"name\": \"aze\", \"value\": \"aze\"}, {\"name\": \"bak\", \"value\": \"bak\"}, {\"name\": \"bam\", \"value\": \"bam\"}, {\"name\": \"bel\", \"value\": \"bel\"}, {\"name\": \"ben\", \"value\": \"ben\"}, {\"name\": \"bis\", \"value\": \"bis\"}, {\"name\": \"bod\", \"value\": \"bod\"}, {\"name\": \"bos\", \"value\": \"bos\"}, {\"name\": \"bre\", \"value\": \"bre\"}, {\"name\": \"bul\", \"value\": \"bul\"}, {\"name\": \"cat\", \"value\": \"cat\"}, {\"name\": \"ces\", \"value\": \"ces\"}, {\"name\": \"cha\", \"value\": \"cha\"}, {\"name\": \"che\", \"value\": \"che\"}, {\"name\": \"chu\", \"value\": \"chu\"}, {\"name\": \"chv\", \"value\": \"chv\"}, {\"name\": \"cor\", \"value\": \"cor\"}, {\"name\": \"cos\", \"value\": \"cos\"}, {\"name\": \"cre\", \"value\": \"cre\"}, {\"name\": \"cym\", \"value\": \"cym\"}, {\"name\": \"dan\", \"value\": \"dan\"}, {\"name\": \"deu\", \"value\": \"deu\"}, {\"name\": \"div\", \"value\": \"div\"}, {\"name\": \"dzo\", \"value\": \"dzo\"}, {\"name\": \"ell\", \"value\": \"ell\"}, {\"name\": \"epo\", \"value\": \"epo\"}, {\"name\": \"est\", \"value\": \"est\"}, {\"name\": \"eus\", \"value\": \"eus\"}, {\"name\": \"ewe\", \"value\": \"ewe\"}, {\"name\": \"fao\", \"value\": \"fao\"}, {\"name\": \"fas\", \"value\": \"fas\"}, {\"name\": \"fij\", \"value\": \"fij\"}, {\"name\": \"fin\", \"value\": \"fin\"}, {\"name\": \"fra\", \"value\": \"fra\"}, {\"name\": \"fry\", \"value\": \"fry\"}, {\"name\": \"ful\", \"value\": \"ful\"}, {\"name\": \"gla\", \"value\": \"gla\"}, {\"name\": \"gle\", \"value\": \"gle\"}, {\"name\": \"glg\", \"value\": \"glg\"}, {\"name\": \"glv\", \"value\": \"glv\"}, {\"name\": \"grn\", \"value\": \"grn\"}, {\"name\": \"guj\", \"value\": \"guj\"}, {\"name\": \"hat\", \"value\": \"hat\"}, {\"name\": \"hau\", \"value\": \"hau\"}, {\"name\": \"heb\", \"value\": \"heb\"}, {\"name\": \"her\", \"value\": \"her\"}, {\"name\": \"hin\", \"value\": \"hin\"}, {\"name\": \"hmo\", \"value\": \"hmo\"}, {\"name\": \"hrv\", \"value\": \"hrv\"}, {\"name\": \"hun\", \"value\": \"hun\"}, {\"name\": \"hye\", \"value\": \"hye\"}, {\"name\": \"ibo\", \"value\": \"ibo\"}, {\"name\": \"ido\", \"value\": \"ido\"}, {\"name\": \"iii\", \"value\": \"iii\"}, {\"name\": \"iku\", \"value\": \"iku\"}, {\"name\": \"ile\", \"value\": \"ile\"}, {\"name\": \"ina\", \"value\": \"ina\"}, {\"name\": \"ind\", \"value\": \"ind\"}, {\"name\": \"ipk\", \"value\": \"ipk\"}, {\"name\": \"isl\", \"value\": \"isl\"}, {\"name\": \"ita\", \"value\": \"ita\"}, {\"name\": \"jav\", \"value\": \"jav\"}, {\"name\": \"kal\", \"value\": \"kal\"}, {\"name\": \"kan\", \"value\": \"kan\"}, {\"name\": \"kas\", \"value\": \"kas\"}, {\"name\": \"kat\", \"value\": \"kat\"}, {\"name\": \"kau\", \"value\": \"kau\"}, {\"name\": \"kaz\", \"value\": \"kaz\"}, {\"name\": \"khm\", \"value\": \"khm\"}, {\"name\": \"kik\", \"value\": \"kik\"}, {\"name\": \"kin\", \"value\": \"kin\"}, {\"name\": \"kir\", \"value\": \"kir\"}, {\"name\": \"kom\", \"value\": \"kom\"}, {\"name\": \"kon\", \"value\": \"kon\"}, {\"name\": \"kor\", \"value\": \"kor\"}, {\"name\": \"kua\", \"value\": \"kua\"}, {\"name\": \"kur\", \"value\": \"kur\"}, {\"name\": \"lao\", \"value\": \"lao\"}, {\"name\": \"lat\", \"value\": \"lat\"}, {\"name\": \"lav\", \"value\": \"lav\"}, {\"name\": \"lim\", \"value\": \"lim\"}, {\"name\": \"lin\", \"value\": \"lin\"}, {\"name\": \"lit\", \"value\": \"lit\"}, {\"name\": \"ltz\", \"value\": \"ltz\"}, {\"name\": \"lub\", \"value\": \"lub\"}, {\"name\": \"lug\", \"value\": \"lug\"}, {\"name\": \"mah\", \"value\": \"mah\"}, {\"name\": \"mal\", \"value\": \"mal\"}, {\"name\": \"mar\", \"value\": \"mar\"}, {\"name\": \"mkd\", \"value\": \"mkd\"}, {\"name\": \"mlg\", \"value\": \"mlg\"}, {\"name\": \"mlt\", \"value\": \"mlt\"}, {\"name\": \"mon\", \"value\": \"mon\"}, {\"name\": \"mri\", \"value\": \"mri\"}, {\"name\": \"msa\", \"value\": \"msa\"}, {\"name\": \"mya\", \"value\": \"mya\"}, {\"name\": \"nau\", \"value\": \"nau\"}, {\"name\": \"nav\", \"value\": \"nav\"}, {\"name\": \"nbl\", \"value\": \"nbl\"}, {\"name\": \"nde\", \"value\": \"nde\"}, {\"name\": \"ndo\", \"value\": \"ndo\"}, {\"name\": \"nep\", \"value\": \"nep\"}, {\"name\": \"nld\", \"value\": \"nld\"}, {\"name\": \"nno\", \"value\": \"nno\"}, {\"name\": \"nob\", \"value\": \"nob\"}, {\"name\": \"nor\", \"value\": \"nor\"}, {\"name\": \"nya\", \"value\": \"nya\"}, {\"name\": \"oci\", \"value\": \"oci\"}, {\"name\": \"oji\", \"value\": \"oji\"}, {\"name\": \"ori\", \"value\": \"ori\"}, {\"name\": \"orm\", \"value\": \"orm\"}, {\"name\": \"oss\", \"value\": \"oss\"}, {\"name\": \"pan\", \"value\": \"pan\"}, {\"name\": \"pli\", \"value\": \"pli\"}, {\"name\": \"pol\", \"value\": \"pol\"}, {\"name\": \"por\", \"value\": \"por\"}, {\"name\": \"pus\", \"value\": \"pus\"}, {\"name\": \"que\", \"value\": \"que\"}, {\"name\": \"roh\", \"value\": \"roh\"}, {\"name\": \"ron\", \"value\": \"ron\"}, {\"name\": \"run\", \"value\": \"run\"}, {\"name\": \"rus\", \"value\": \"rus\"}, {\"name\": \"sag\", \"value\": \"sag\"}, {\"name\": \"san\", \"value\": \"san\"}, {\"name\": \"sin\", \"value\": \"sin\"}, {\"name\": \"slk\", \"value\": \"slk\"}, {\"name\": \"slv\", \"value\": \"slv\"}, {\"name\": \"sme\", \"value\": \"sme\"}, {\"name\": \"smo\", \"value\": \"smo\"}, {\"name\": \"sna\", \"value\": \"sna\"}, {\"name\": \"snd\", \"value\": \"snd\"}, {\"name\": \"som\", \"value\": \"som\"}, {\"name\": \"sot\", \"value\": \"sot\"}, {\"name\": \"spa\", \"value\": \"spa\"}, {\"name\": \"sqi\", \"value\": \"sqi\"}, {\"name\": \"srd\", \"value\": \"srd\"}, {\"name\": \"srp\", \"value\": \"srp\"}, {\"name\": \"ssw\", \"value\": \"ssw\"}, {\"name\": \"sun\", \"value\": \"sun\"}, {\"name\": \"swa\", \"value\": \"swa\"}, {\"name\": \"swe\", \"value\": \"swe\"}, {\"name\": \"tah\", \"value\": \"tah\"}, {\"name\": \"tam\", \"value\": \"tam\"}, {\"name\": \"tat\", \"value\": \"tat\"}, {\"name\": \"tel\", \"value\": \"tel\"}, {\"name\": \"tgk\", \"value\": \"tgk\"}, {\"name\": \"tgl\", \"value\": \"tgl\"}, {\"name\": \"tha\", \"value\": \"tha\"}, {\"name\": \"tir\", \"value\": \"tir\"}, {\"name\": \"ton\", \"value\": \"ton\"}, {\"name\": \"tsn\", \"value\": \"tsn\"}, {\"name\": \"tso\", \"value\": \"tso\"}, {\"name\": \"tuk\", \"value\": \"tuk\"}, {\"name\": \"tur\", \"value\": \"tur\"}, {\"name\": \"twi\", \"value\": \"twi\"}, {\"name\": \"uig\", \"value\": \"uig\"}, {\"name\": \"ukr\", \"value\": \"ukr\"}, {\"name\": \"urd\", \"value\": \"urd\"}, {\"name\": \"uzb\", \"value\": \"uzb\"}, {\"name\": \"ven\", \"value\": \"ven\"}, {\"name\": \"vie\", \"value\": \"vie\"}, {\"name\": \"vol\", \"value\": \"vol\"}, {\"name\": \"wln\", \"value\": \"wln\"}, {\"name\": \"wol\", \"value\": \"wol\"}, {\"name\": \"xho\", \"value\": \"xho\"}, {\"name\": \"yid\", \"value\": \"yid\"}, {\"name\": \"yor\", \"value\": \"yor\"}, {\"name\": \"zha\", \"value\": \"zha\"}, {\"name\": \"zho\", \"value\": \"zho\"}, {\"name\": \"zul\", \"value\": \"zul\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Language\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617258105262.resourceuri\", \"type\": \"text\", \"title\": \"資源タイプ識別子\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617258105262.resourcetype\", \"type\": \"select\", \"title\": \"資源タイプ \", \"isHide\": false, \"onChange\": \"resourceTypeSelect()\", \"required\": false, \"titleMap\": [{\"name\": \"conference paper\", \"value\": \"conference paper\"}, {\"name\": \"data paper\", \"value\": \"data paper\"}, {\"name\": \"departmental bulletin paper\", \"value\": \"departmental bulletin paper\"}, {\"name\": \"editorial\", \"value\": \"editorial\"}, {\"name\": \"journal\", \"value\": \"journal\"}, {\"name\": \"journal article\", \"value\": \"journal article\"}, {\"name\": \"newspaper\", \"value\": \"newspaper\"}, {\"name\": \"review article\", \"value\": \"review article\"}, {\"name\": \"other periodical\", \"value\": \"other periodical\"}, {\"name\": \"software paper\", \"value\": \"software paper\"}, {\"name\": \"article\", \"value\": \"article\"}, {\"name\": \"book\", \"value\": \"book\"}, {\"name\": \"book part\", \"value\": \"book part\"}, {\"name\": \"cartographic material\", \"value\": \"cartographic material\"}, {\"name\": \"map\", \"value\": \"map\"}, {\"name\": \"conference output\", \"value\": \"conference output\"}, {\"name\": \"conference presentation\", \"value\": \"conference presentation\"}, {\"name\": \"conference proceedings\", \"value\": \"conference proceedings\"}, {\"name\": \"conference poster\", \"value\": \"conference poster\"}, {\"name\": \"aggregated data\", \"value\": \"aggregated data\"}, {\"name\": \"clinical trial data\", \"value\": \"clinical trial data\"}, {\"name\": \"compiled data\", \"value\": \"compiled data\"}, {\"name\": \"dataset\", \"value\": \"dataset\"}, {\"name\": \"encoded data\", \"value\": \"encoded data\"}, {\"name\": \"experimental data\", \"value\": \"experimental data\"}, {\"name\": \"genomic data\", \"value\": \"genomic data\"}, {\"name\": \"geospatial data\", \"value\": \"geospatial data\"}, {\"name\": \"laboratory notebook\", \"value\": \"laboratory notebook\"}, {\"name\": \"measurement and test data\", \"value\": \"measurement and test data\"}, {\"name\": \"observational data\", \"value\": \"observational data\"}, {\"name\": \"recorded data\", \"value\": \"recorded data\"}, {\"name\": \"simulation data\", \"value\": \"simulation data\"}, {\"name\": \"survey data\", \"value\": \"survey data\"}, {\"name\": \"image\", \"value\": \"image\"}, {\"name\": \"still image\", \"value\": \"still image\"}, {\"name\": \"moving image\", \"value\": \"moving image\"}, {\"name\": \"video\", \"value\": \"video\"}, {\"name\": \"lecture\", \"value\": \"lecture\"}, {\"name\": \"design patent\", \"value\": \"design patent\"}, {\"name\": \"patent\", \"value\": \"patent\"}, {\"name\": \"PCT application\", \"value\": \"PCT application\"}, {\"name\": \"plant patent\", \"value\": \"plant patent\"}, {\"name\": \"plant variety protection\", \"value\": \"plant variety protection\"}, {\"name\": \"software patent\", \"value\": \"software patent\"}, {\"name\": \"trademark\", \"value\": \"trademark\"}, {\"name\": \"utility model\", \"value\": \"utility model\"}, {\"name\": \"report\", \"value\": \"report\"}, {\"name\": \"research report\", \"value\": \"research report\"}, {\"name\": \"technical report\", \"value\": \"technical report\"}, {\"name\": \"policy report\", \"value\": \"policy report\"}, {\"name\": \"working paper\", \"value\": \"working paper\"}, {\"name\": \"data management plan\", \"value\": \"data management plan\"}, {\"name\": \"sound\", \"value\": \"sound\"}, {\"name\": \"thesis\", \"value\": \"thesis\"}, {\"name\": \"bachelor thesis\", \"value\": \"bachelor thesis\"}, {\"name\": \"master thesis\", \"value\": \"master thesis\"}, {\"name\": \"doctoral thesis\", \"value\": \"doctoral thesis\"}, {\"name\": \"commentary\", \"value\": \"commentary\"}, {\"name\": \"design\", \"value\": \"design\"}, {\"name\": \"industrial design\", \"value\": \"industrial design\"}, {\"name\": \"interactive resource\", \"value\": \"interactive resource\"}, {\"name\": \"layout design\", \"value\": \"layout design\"}, {\"name\": \"learning object\", \"value\": \"learning object\"}, {\"name\": \"manuscript\", \"value\": \"manuscript\"}, {\"name\": \"musical notation\", \"value\": \"musical notation\"}, {\"name\": \"peer review\", \"value\": \"peer review\"}, {\"name\": \"research proposal\", \"value\": \"research proposal\"}, {\"name\": \"research protocol\", \"value\": \"research protocol\"}, {\"name\": \"software\", \"value\": \"software\"}, {\"name\": \"source code\", \"value\": \"source code\"}, {\"name\": \"technical documentation\", \"value\": \"technical documentation\"}, {\"name\": \"transcription\", \"value\": \"transcription\"}, {\"name\": \"workflow\", \"value\": \"workflow\"}, {\"name\": \"other\", \"value\": \"other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Resource Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617349808926\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617349808926.subitem_version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617265215918.subitem_version_type\", \"type\": \"select\", \"title\": \"出版タイプ\", \"isHide\": false, \"onChange\": \"changedVersionType(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"AO\", \"value\": \"AO\"}, {\"name\": \"SMUR\", \"value\": \"SMUR\"}, {\"name\": \"AM\", \"value\": \"AM\"}, {\"name\": \"P\", \"value\": \"P\"}, {\"name\": \"VoR\", \"value\": \"VoR\"}, {\"name\": \"CVoR\", \"value\": \"CVoR\"}, {\"name\": \"EVoR\", \"value\": \"EVoR\"}, {\"name\": \"NA\", \"value\": \"NA\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_version_resource\", \"type\": \"text\", \"title\": \"出版タイプResource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-version-resource\", \"isSpecifyNewline\": false}, {\"key\": \"item_1617265215918.subitem_peer_reviewed\", \"type\": \"select\", \"title\": \"査読の有無\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Peer reviewed\", \"value\": \"Peer reviewed\", \"name_i18n\": {\"en\": \"Peer reviewed\", \"ja\": \"査読あり\"}}, {\"name\": \"Not peer reviewed\", \"value\": \"Not peer reviewed\", \"name_i18n\": {\"en\": \"Not peer reviewed\", \"ja\": \"査読なし\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Version Type\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186783814\", \"items\": [{\"key\": \"item_1617186783814[].subitem_identifier_uri\", \"type\": \"text\", \"title\": \"識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186783814[].subitem_identifier_type\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186819068.subitem_identifier_reg_text\", \"type\": \"text\", \"title\": \"ID登録\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186819068.subitem_identifier_reg_type\", \"type\": \"select\", \"title\": \"ID登録タイプ\", \"isHide\": false, \"readonly\": true, \"required\": false, \"titleMap\": [{\"name\": \"JaLC\", \"value\": \"JaLC\"}, {\"name\": \"Crossref\", \"value\": \"Crossref\"}, {\"name\": \"DataCite\", \"value\": \"DataCite\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Identifier Registration\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type\", \"type\": \"select\", \"title\": \"関連タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"isVersionOf\", \"value\": \"isVersionOf\"}, {\"name\": \"hasVersion\", \"value\": \"hasVersion\"}, {\"name\": \"isPartOf\", \"value\": \"isPartOf\"}, {\"name\": \"hasPart\", \"value\": \"hasPart\"}, {\"name\": \"isReferencedBy\", \"value\": \"isReferencedBy\"}, {\"name\": \"references\", \"value\": \"references\"}, {\"name\": \"isFormatOf\", \"value\": \"isFormatOf\"}, {\"name\": \"hasFormat\", \"value\": \"hasFormat\"}, {\"name\": \"isReplacedBy\", \"value\": \"isReplacedBy\"}, {\"name\": \"replaces\", \"value\": \"replaces\"}, {\"name\": \"isRequiredBy\", \"value\": \"isRequiredBy\"}, {\"name\": \"requires\", \"value\": \"requires\"}, {\"name\": \"isSupplementedBy\", \"value\": \"isSupplementedBy\"}, {\"name\": \"isSupplementTo\", \"value\": \"isSupplementTo\"}, {\"name\": \"isIdenticalTo\", \"value\": \"isIdenticalTo\"}, {\"name\": \"isDerivedFrom\", \"value\": \"isDerivedFrom\"}, {\"name\": \"isSourceOf\", \"value\": \"isSourceOf\"}, {\"name\": \"isCitedBy\", \"value\": \"isCitedBy\"}, {\"name\": \"Cites\", \"value\": \"Cites\"}, {\"name\": \"inSeries\", \"value\": \"inSeries\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation Type\", \"ja\": \"関連タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_select\", \"type\": \"select\", \"title\": \"識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ARK\", \"value\": \"ARK\"}, {\"name\": \"arXiv\", \"value\": \"arXiv\"}, {\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"ICHUSHI\", \"value\": \"ICHUSHI\"}, {\"name\": \"ISBN\", \"value\": \"ISBN\"}, {\"name\": \"J-GLOBAL\", \"value\": \"J-GLOBAL\"}, {\"name\": \"Local\", \"value\": \"Local\"}, {\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN【非推奨】\", \"value\": \"ISSN\"}, {\"name\": \"NAID【非推奨】\", \"value\": \"NAID\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}, {\"name\": \"PMID\", \"value\": \"PMID\"}, {\"name\": \"PURL\", \"value\": \"PURL\"}, {\"name\": \"SCOPUS\", \"value\": \"SCOPUS\"}, {\"name\": \"URI\", \"value\": \"URI\"}, {\"name\": \"WOS\", \"value\": \"WOS\"}, {\"name\": \"CRID\", \"value\": \"CRID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_type_id.subitem_relation_type_id_text\", \"type\": \"text\", \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"関連識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Identifier\", \"ja\": \"関連識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617353299429[].subitem_relation_name\", \"items\": [{\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617353299429[].subitem_relation_name[].subitem_relation_name_text\", \"type\": \"text\", \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"関連名称\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Related Title\", \"ja\": \"関連名称\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Relation\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Relation\", \"ja\": \"関連情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186859717\", \"items\": [{\"key\": \"item_1617186859717[].subitem_temporal_text\", \"type\": \"text\", \"title\": \"時間的範囲\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186859717[].subitem_temporal_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Temporal\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Temporal\", \"ja\": \"時間的範囲\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_longitude\", \"type\": \"text\", \"title\": \"経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Longitude\", \"ja\": \"経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_point.subitem_point_latitude\", \"type\": \"text\", \"title\": \"緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Point Latitude\", \"ja\": \"緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(点)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Point\", \"ja\": \"位置情報(点)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_west_longitude\", \"type\": \"text\", \"title\": \"西部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"West Bound Longitude\", \"ja\": \"西部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_east_longitude\", \"type\": \"text\", \"title\": \"東部経度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"East Bound Longitude\", \"ja\": \"東部経度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_south_latitude\", \"type\": \"text\", \"title\": \"南部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"South Bound Latitude\", \"ja\": \"南部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186882738[].subitem_geolocation_box.subitem_north_latitude\", \"type\": \"text\", \"title\": \"北部緯度\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"North Bound Latitude\", \"ja\": \"北部緯度\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"位置情報(空間)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Box\", \"ja\": \"位置情報(空間)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186882738[].subitem_geolocation_place\", \"items\": [{\"key\": \"item_1617186882738[].subitem_geolocation_place[].subitem_geolocation_place_text\", \"type\": \"text\", \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"位置情報(自由記述)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location Place\", \"ja\": \"位置情報(自由記述)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Geo Location\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Geo Location\", \"ja\": \"位置情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type\", \"type\": \"select\", \"title\": \"助成機関識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"e-Rad_funder\", \"value\": \"e-Rad_funder\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type\", \"ja\": \"助成機関識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier\", \"type\": \"text\", \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_identifiers.subitem_funder_identifier_type_uri\", \"type\": \"text\", \"title\": \"助成機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier Type URI\", \"ja\": \"助成機関識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"助成機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Identifier\", \"ja\": \"助成機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funder_names\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name\", \"type\": \"text\", \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funder_names[].subitem_funder_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"助成機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder Name\", \"ja\": \"助成機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type\", \"type\": \"select\", \"title\": \"プログラム情報識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Crossref Funder\", \"value\": \"Crossref Funder\"}, {\"name\": \"JGN_fundingStream\", \"value\": \"JGN_fundingStream\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type\", \"ja\": \"プログラム情報識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier\", \"type\": \"text\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_stream_identifiers.subitem_funding_stream_identifier_type_uri\", \"type\": \"text\", \"title\": \"プログラム情報識別子タイプURI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifier Type URI\", \"ja\": \"プログラム情報識別子タイプURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"プログラム情報識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream Identifiers\", \"ja\": \"プログラム情報識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_funding_streams\", \"items\": [{\"key\": \"item_1617186901218[].subitem_funding_streams.subitem_funding_stream\", \"type\": \"text\", \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Stream\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_funding_streams[].subitem_funding_stream_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"プログラム情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funding Streams\", \"ja\": \"プログラム情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number_type\", \"type\": \"select\", \"title\": \"研究課題番号タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JGN\", \"value\": \"JGN\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number Type\", \"ja\": \"研究課題番号タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_number\", \"type\": \"text\", \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_numbers.subitem_award_uri\", \"type\": \"text\", \"title\": \"研究課題番号URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number URI\", \"ja\": \"研究課題番号URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"研究課題番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Number\", \"ja\": \"研究課題番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186901218[].subitem_award_titles\", \"items\": [{\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title\", \"type\": \"text\", \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186901218[].subitem_award_titles[].subitem_award_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"研究課題名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Award Title\", \"ja\": \"研究課題名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Funding Reference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Funder\", \"ja\": \"助成情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186920753\", \"items\": [{\"key\": \"item_1617186920753[].subitem_source_identifier_type\", \"type\": \"select\", \"title\": \"収録物識別子タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"PISSN\", \"value\": \"PISSN\"}, {\"name\": \"EISSN\", \"value\": \"EISSN\"}, {\"name\": \"ISSN\", \"value\": \"ISSN\"}, {\"name\": \"NCID\", \"value\": \"NCID\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier Type\", \"ja\": \"収録物識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186920753[].subitem_source_identifier\", \"type\": \"text\", \"title\": \"収録物識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Identifier\", \"ja\": \"収録物識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617186941041\", \"items\": [{\"key\": \"item_1617186941041[].subitem_source_title\", \"type\": \"text\", \"title\": \"収録物名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186941041[].subitem_source_title_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Source Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Source Title\", \"ja\": \"収録物名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186959569\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186959569.subitem_volume\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Volume Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186981471\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186981471.subitem_issue\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Issue Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617186994930\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617186994930.subitem_number_of_pages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Number of Pages\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187024783\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187024783.subitem_start_page\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page Start\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187045071\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187045071.subitem_end_page\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Page End\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187056579.bibliographic_titles\", \"items\": [{\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_title\", \"type\": \"text\", \"title\": \"タイトル\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographic_titles[].bibliographic_titleLang\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"雑誌名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Journal Title\", \"ja\": \"雑誌名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicVolumeNumber\", \"type\": \"text\", \"title\": \"巻\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Number\", \"ja\": \"巻\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueNumber\", \"type\": \"text\", \"title\": \"号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Number\", \"ja\": \"号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageStart\", \"type\": \"text\", \"title\": \"開始ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page Start\", \"ja\": \"開始ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicPageEnd\", \"type\": \"text\", \"title\": \"終了ページ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Page End\", \"ja\": \"終了ページ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicNumberOfPages\", \"type\": \"text\", \"title\": \"ページ数\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Number of Page\", \"ja\": \"ページ数\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDate\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187056579.bibliographicIssueDates.bibliographicIssueDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"\", \"value\": \"\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"発行日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Issue Date\", \"ja\": \"発行日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Bibliographic Information\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Bibliographic Information\", \"ja\": \"書誌情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187087799\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187087799.subitem_dissertationnumber\", \"type\": \"text\", \"title\": \"学位授与番号\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Dissertation Number\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187112279\", \"items\": [{\"key\": \"item_1617187112279[].subitem_degreename\", \"type\": \"text\", \"title\": \"学位名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187112279[].subitem_degreename_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Name\", \"ja\": \"学位名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187136212\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187136212.subitem_dategranted\", \"type\": \"template\", \"title\": \"学位授与年月日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker_multi_format.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"Date Granted\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor_identifier\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_scheme\", \"type\": \"select\", \"title\": \"学位授与機関識別子Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi\", \"value\": \"kakenhi\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier Scheme\", \"ja\": \"学位授与機関識別子Scheme\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor_identifier[].subitem_degreegrantor_identifier_name\", \"type\": \"text\", \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name Identifier\", \"ja\": \"学位授与機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617944105607[].subitem_degreegrantor\", \"items\": [{\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_name\", \"type\": \"text\", \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617944105607[].subitem_degreegrantor[].subitem_degreegrantor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"学位授与機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor Name\", \"ja\": \"学位授与機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Degree Grantor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Degree Grantor\", \"ja\": \"学位授与機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528\", \"items\": [{\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_names\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name\", \"type\": \"text\", \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_names[].subitem_conference_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"会議名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Name\", \"ja\": \"会議名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sequence\", \"type\": \"text\", \"title\": \"回次\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sequence\", \"ja\": \"回次\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_sponsors\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor\", \"type\": \"text\", \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_sponsors[].subitem_conference_sponsor_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"主催機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Sponsor\", \"ja\": \"主催機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_year\", \"type\": \"text\", \"title\": \"開始年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Year\", \"ja\": \"開始年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_month\", \"type\": \"text\", \"title\": \"開始月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Month\", \"ja\": \"開始月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_start_day\", \"type\": \"text\", \"title\": \"開始日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Start Day\", \"ja\": \"開始日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_year\", \"type\": \"text\", \"title\": \"終了年\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Year\", \"ja\": \"終了年\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_month\", \"type\": \"text\", \"title\": \"終了月\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Month\", \"ja\": \"終了月\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_end_day\", \"type\": \"text\", \"title\": \"終了日\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"End Day\", \"ja\": \"終了日\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_period\", \"type\": \"text\", \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_date.subitem_conference_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"開催期間\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Date\", \"ja\": \"開催期間\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_venues\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue\", \"type\": \"text\", \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_venues[].subitem_conference_venue_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催会場\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Venue\", \"ja\": \"開催会場\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617187187528[].subitem_conference_places\", \"items\": [{\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place\", \"type\": \"text\", \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_places[].subitem_conference_place_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"開催地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Place\", \"ja\": \"開催地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617187187528[].subitem_conference_country\", \"type\": \"select\", \"title\": \"開催国\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"JPN\", \"value\": \"JPN\"}, {\"name\": \"ABW\", \"value\": \"ABW\"}, {\"name\": \"AFG\", \"value\": \"AFG\"}, {\"name\": \"AGO\", \"value\": \"AGO\"}, {\"name\": \"AIA\", \"value\": \"AIA\"}, {\"name\": \"ALA\", \"value\": \"ALA\"}, {\"name\": \"ALB\", \"value\": \"ALB\"}, {\"name\": \"AND\", \"value\": \"AND\"}, {\"name\": \"ARE\", \"value\": \"ARE\"}, {\"name\": \"ARG\", \"value\": \"ARG\"}, {\"name\": \"ARM\", \"value\": \"ARM\"}, {\"name\": \"ASM\", \"value\": \"ASM\"}, {\"name\": \"ATA\", \"value\": \"ATA\"}, {\"name\": \"ATF\", \"value\": \"ATF\"}, {\"name\": \"ATG\", \"value\": \"ATG\"}, {\"name\": \"AUS\", \"value\": \"AUS\"}, {\"name\": \"AUT\", \"value\": \"AUT\"}, {\"name\": \"AZE\", \"value\": \"AZE\"}, {\"name\": \"BDI\", \"value\": \"BDI\"}, {\"name\": \"BEL\", \"value\": \"BEL\"}, {\"name\": \"BEN\", \"value\": \"BEN\"}, {\"name\": \"BES\", \"value\": \"BES\"}, {\"name\": \"BFA\", \"value\": \"BFA\"}, {\"name\": \"BGD\", \"value\": \"BGD\"}, {\"name\": \"BGR\", \"value\": \"BGR\"}, {\"name\": \"BHR\", \"value\": \"BHR\"}, {\"name\": \"BHS\", \"value\": \"BHS\"}, {\"name\": \"BIH\", \"value\": \"BIH\"}, {\"name\": \"BLM\", \"value\": \"BLM\"}, {\"name\": \"BLR\", \"value\": \"BLR\"}, {\"name\": \"BLZ\", \"value\": \"BLZ\"}, {\"name\": \"BMU\", \"value\": \"BMU\"}, {\"name\": \"BOL\", \"value\": \"BOL\"}, {\"name\": \"BRA\", \"value\": \"BRA\"}, {\"name\": \"BRB\", \"value\": \"BRB\"}, {\"name\": \"BRN\", \"value\": \"BRN\"}, {\"name\": \"BTN\", \"value\": \"BTN\"}, {\"name\": \"BVT\", \"value\": \"BVT\"}, {\"name\": \"BWA\", \"value\": \"BWA\"}, {\"name\": \"CAF\", \"value\": \"CAF\"}, {\"name\": \"CAN\", \"value\": \"CAN\"}, {\"name\": \"CCK\", \"value\": \"CCK\"}, {\"name\": \"CHE\", \"value\": \"CHE\"}, {\"name\": \"CHL\", \"value\": \"CHL\"}, {\"name\": \"CHN\", \"value\": \"CHN\"}, {\"name\": \"CIV\", \"value\": \"CIV\"}, {\"name\": \"CMR\", \"value\": \"CMR\"}, {\"name\": \"COD\", \"value\": \"COD\"}, {\"name\": \"COG\", \"value\": \"COG\"}, {\"name\": \"COK\", \"value\": \"COK\"}, {\"name\": \"COL\", \"value\": \"COL\"}, {\"name\": \"COM\", \"value\": \"COM\"}, {\"name\": \"CPV\", \"value\": \"CPV\"}, {\"name\": \"CRI\", \"value\": \"CRI\"}, {\"name\": \"CUB\", \"value\": \"CUB\"}, {\"name\": \"CUW\", \"value\": \"CUW\"}, {\"name\": \"CXR\", \"value\": \"CXR\"}, {\"name\": \"CYM\", \"value\": \"CYM\"}, {\"name\": \"CYP\", \"value\": \"CYP\"}, {\"name\": \"CZE\", \"value\": \"CZE\"}, {\"name\": \"DEU\", \"value\": \"DEU\"}, {\"name\": \"DJI\", \"value\": \"DJI\"}, {\"name\": \"DMA\", \"value\": \"DMA\"}, {\"name\": \"DNK\", \"value\": \"DNK\"}, {\"name\": \"DOM\", \"value\": \"DOM\"}, {\"name\": \"DZA\", \"value\": \"DZA\"}, {\"name\": \"ECU\", \"value\": \"ECU\"}, {\"name\": \"EGY\", \"value\": \"EGY\"}, {\"name\": \"ERI\", \"value\": \"ERI\"}, {\"name\": \"ESH\", \"value\": \"ESH\"}, {\"name\": \"ESP\", \"value\": \"ESP\"}, {\"name\": \"EST\", \"value\": \"EST\"}, {\"name\": \"ETH\", \"value\": \"ETH\"}, {\"name\": \"FIN\", \"value\": \"FIN\"}, {\"name\": \"FJI\", \"value\": \"FJI\"}, {\"name\": \"FLK\", \"value\": \"FLK\"}, {\"name\": \"FRA\", \"value\": \"FRA\"}, {\"name\": \"FRO\", \"value\": \"FRO\"}, {\"name\": \"FSM\", \"value\": \"FSM\"}, {\"name\": \"GAB\", \"value\": \"GAB\"}, {\"name\": \"GBR\", \"value\": \"GBR\"}, {\"name\": \"GEO\", \"value\": \"GEO\"}, {\"name\": \"GGY\", \"value\": \"GGY\"}, {\"name\": \"GHA\", \"value\": \"GHA\"}, {\"name\": \"GIB\", \"value\": \"GIB\"}, {\"name\": \"GIN\", \"value\": \"GIN\"}, {\"name\": \"GLP\", \"value\": \"GLP\"}, {\"name\": \"GMB\", \"value\": \"GMB\"}, {\"name\": \"GNB\", \"value\": \"GNB\"}, {\"name\": \"GNQ\", \"value\": \"GNQ\"}, {\"name\": \"GRC\", \"value\": \"GRC\"}, {\"name\": \"GRD\", \"value\": \"GRD\"}, {\"name\": \"GRL\", \"value\": \"GRL\"}, {\"name\": \"GTM\", \"value\": \"GTM\"}, {\"name\": \"GUF\", \"value\": \"GUF\"}, {\"name\": \"GUM\", \"value\": \"GUM\"}, {\"name\": \"GUY\", \"value\": \"GUY\"}, {\"name\": \"HKG\", \"value\": \"HKG\"}, {\"name\": \"HMD\", \"value\": \"HMD\"}, {\"name\": \"HND\", \"value\": \"HND\"}, {\"name\": \"HRV\", \"value\": \"HRV\"}, {\"name\": \"HTI\", \"value\": \"HTI\"}, {\"name\": \"HUN\", \"value\": \"HUN\"}, {\"name\": \"IDN\", \"value\": \"IDN\"}, {\"name\": \"IMN\", \"value\": \"IMN\"}, {\"name\": \"IND\", \"value\": \"IND\"}, {\"name\": \"IOT\", \"value\": \"IOT\"}, {\"name\": \"IRL\", \"value\": \"IRL\"}, {\"name\": \"IRN\", \"value\": \"IRN\"}, {\"name\": \"IRQ\", \"value\": \"IRQ\"}, {\"name\": \"ISL\", \"value\": \"ISL\"}, {\"name\": \"ISR\", \"value\": \"ISR\"}, {\"name\": \"ITA\", \"value\": \"ITA\"}, {\"name\": \"JAM\", \"value\": \"JAM\"}, {\"name\": \"JEY\", \"value\": \"JEY\"}, {\"name\": \"JOR\", \"value\": \"JOR\"}, {\"name\": \"KAZ\", \"value\": \"KAZ\"}, {\"name\": \"KEN\", \"value\": \"KEN\"}, {\"name\": \"KGZ\", \"value\": \"KGZ\"}, {\"name\": \"KHM\", \"value\": \"KHM\"}, {\"name\": \"KIR\", \"value\": \"KIR\"}, {\"name\": \"KNA\", \"value\": \"KNA\"}, {\"name\": \"KOR\", \"value\": \"KOR\"}, {\"name\": \"KWT\", \"value\": \"KWT\"}, {\"name\": \"LAO\", \"value\": \"LAO\"}, {\"name\": \"LBN\", \"value\": \"LBN\"}, {\"name\": \"LBR\", \"value\": \"LBR\"}, {\"name\": \"LBY\", \"value\": \"LBY\"}, {\"name\": \"LCA\", \"value\": \"LCA\"}, {\"name\": \"LIE\", \"value\": \"LIE\"}, {\"name\": \"LKA\", \"value\": \"LKA\"}, {\"name\": \"LSO\", \"value\": \"LSO\"}, {\"name\": \"LTU\", \"value\": \"LTU\"}, {\"name\": \"LUX\", \"value\": \"LUX\"}, {\"name\": \"LVA\", \"value\": \"LVA\"}, {\"name\": \"MAC\", \"value\": \"MAC\"}, {\"name\": \"MAF\", \"value\": \"MAF\"}, {\"name\": \"MAR\", \"value\": \"MAR\"}, {\"name\": \"MCO\", \"value\": \"MCO\"}, {\"name\": \"MDA\", \"value\": \"MDA\"}, {\"name\": \"MDG\", \"value\": \"MDG\"}, {\"name\": \"MDV\", \"value\": \"MDV\"}, {\"name\": \"MEX\", \"value\": \"MEX\"}, {\"name\": \"MHL\", \"value\": \"MHL\"}, {\"name\": \"MKD\", \"value\": \"MKD\"}, {\"name\": \"MLI\", \"value\": \"MLI\"}, {\"name\": \"MLT\", \"value\": \"MLT\"}, {\"name\": \"MMR\", \"value\": \"MMR\"}, {\"name\": \"MNE\", \"value\": \"MNE\"}, {\"name\": \"MNG\", \"value\": \"MNG\"}, {\"name\": \"MNP\", \"value\": \"MNP\"}, {\"name\": \"MOZ\", \"value\": \"MOZ\"}, {\"name\": \"MRT\", \"value\": \"MRT\"}, {\"name\": \"MSR\", \"value\": \"MSR\"}, {\"name\": \"MTQ\", \"value\": \"MTQ\"}, {\"name\": \"MUS\", \"value\": \"MUS\"}, {\"name\": \"MWI\", \"value\": \"MWI\"}, {\"name\": \"MYS\", \"value\": \"MYS\"}, {\"name\": \"MYT\", \"value\": \"MYT\"}, {\"name\": \"NAM\", \"value\": \"NAM\"}, {\"name\": \"NCL\", \"value\": \"NCL\"}, {\"name\": \"NER\", \"value\": \"NER\"}, {\"name\": \"NFK\", \"value\": \"NFK\"}, {\"name\": \"NGA\", \"value\": \"NGA\"}, {\"name\": \"NIC\", \"value\": \"NIC\"}, {\"name\": \"NIU\", \"value\": \"NIU\"}, {\"name\": \"NLD\", \"value\": \"NLD\"}, {\"name\": \"NOR\", \"value\": \"NOR\"}, {\"name\": \"NPL\", \"value\": \"NPL\"}, {\"name\": \"NRU\", \"value\": \"NRU\"}, {\"name\": \"NZL\", \"value\": \"NZL\"}, {\"name\": \"OMN\", \"value\": \"OMN\"}, {\"name\": \"PAK\", \"value\": \"PAK\"}, {\"name\": \"PAN\", \"value\": \"PAN\"}, {\"name\": \"PCN\", \"value\": \"PCN\"}, {\"name\": \"PER\", \"value\": \"PER\"}, {\"name\": \"PHL\", \"value\": \"PHL\"}, {\"name\": \"PLW\", \"value\": \"PLW\"}, {\"name\": \"PNG\", \"value\": \"PNG\"}, {\"name\": \"POL\", \"value\": \"POL\"}, {\"name\": \"PRI\", \"value\": \"PRI\"}, {\"name\": \"PRK\", \"value\": \"PRK\"}, {\"name\": \"PRT\", \"value\": \"PRT\"}, {\"name\": \"PRY\", \"value\": \"PRY\"}, {\"name\": \"PSE\", \"value\": \"PSE\"}, {\"name\": \"PYF\", \"value\": \"PYF\"}, {\"name\": \"QAT\", \"value\": \"QAT\"}, {\"name\": \"REU\", \"value\": \"REU\"}, {\"name\": \"ROU\", \"value\": \"ROU\"}, {\"name\": \"RUS\", \"value\": \"RUS\"}, {\"name\": \"RWA\", \"value\": \"RWA\"}, {\"name\": \"SAU\", \"value\": \"SAU\"}, {\"name\": \"SDN\", \"value\": \"SDN\"}, {\"name\": \"SEN\", \"value\": \"SEN\"}, {\"name\": \"SGP\", \"value\": \"SGP\"}, {\"name\": \"SGS\", \"value\": \"SGS\"}, {\"name\": \"SHN\", \"value\": \"SHN\"}, {\"name\": \"SJM\", \"value\": \"SJM\"}, {\"name\": \"SLB\", \"value\": \"SLB\"}, {\"name\": \"SLE\", \"value\": \"SLE\"}, {\"name\": \"SLV\", \"value\": \"SLV\"}, {\"name\": \"SMR\", \"value\": \"SMR\"}, {\"name\": \"SOM\", \"value\": \"SOM\"}, {\"name\": \"SPM\", \"value\": \"SPM\"}, {\"name\": \"SRB\", \"value\": \"SRB\"}, {\"name\": \"SSD\", \"value\": \"SSD\"}, {\"name\": \"STP\", \"value\": \"STP\"}, {\"name\": \"SUR\", \"value\": \"SUR\"}, {\"name\": \"SVK\", \"value\": \"SVK\"}, {\"name\": \"SVN\", \"value\": \"SVN\"}, {\"name\": \"SWE\", \"value\": \"SWE\"}, {\"name\": \"SWZ\", \"value\": \"SWZ\"}, {\"name\": \"SXM\", \"value\": \"SXM\"}, {\"name\": \"SYC\", \"value\": \"SYC\"}, {\"name\": \"SYR\", \"value\": \"SYR\"}, {\"name\": \"TCA\", \"value\": \"TCA\"}, {\"name\": \"TCD\", \"value\": \"TCD\"}, {\"name\": \"TGO\", \"value\": \"TGO\"}, {\"name\": \"THA\", \"value\": \"THA\"}, {\"name\": \"TJK\", \"value\": \"TJK\"}, {\"name\": \"TKL\", \"value\": \"TKL\"}, {\"name\": \"TKM\", \"value\": \"TKM\"}, {\"name\": \"TLS\", \"value\": \"TLS\"}, {\"name\": \"TON\", \"value\": \"TON\"}, {\"name\": \"TTO\", \"value\": \"TTO\"}, {\"name\": \"TUN\", \"value\": \"TUN\"}, {\"name\": \"TUR\", \"value\": \"TUR\"}, {\"name\": \"TUV\", \"value\": \"TUV\"}, {\"name\": \"TWN\", \"value\": \"TWN\"}, {\"name\": \"TZA\", \"value\": \"TZA\"}, {\"name\": \"UGA\", \"value\": \"UGA\"}, {\"name\": \"UKR\", \"value\": \"UKR\"}, {\"name\": \"UMI\", \"value\": \"UMI\"}, {\"name\": \"URY\", \"value\": \"URY\"}, {\"name\": \"USA\", \"value\": \"USA\"}, {\"name\": \"UZB\", \"value\": \"UZB\"}, {\"name\": \"VAT\", \"value\": \"VAT\"}, {\"name\": \"VCT\", \"value\": \"VCT\"}, {\"name\": \"VEN\", \"value\": \"VEN\"}, {\"name\": \"VGB\", \"value\": \"VGB\"}, {\"name\": \"VIR\", \"value\": \"VIR\"}, {\"name\": \"VNM\", \"value\": \"VNM\"}, {\"name\": \"VUT\", \"value\": \"VUT\"}, {\"name\": \"WLF\", \"value\": \"WLF\"}, {\"name\": \"WSM\", \"value\": \"WSM\"}, {\"name\": \"YEM\", \"value\": \"YEM\"}, {\"name\": \"ZAF\", \"value\": \"ZAF\"}, {\"name\": \"ZMB\", \"value\": \"ZMB\"}, {\"name\": \"ZWE\", \"value\": \"ZWE\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference Country\", \"ja\": \"開催国\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Conference\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Conference\", \"ja\": \"会議記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1617620223087\", \"items\": [{\"key\": \"item_1617620223087[].subitem_heading_banner_headline\", \"type\": \"text\", \"title\": \"大見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"大見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_headline\", \"type\": \"text\", \"title\": \"小見出し\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subheading\", \"ja\": \"小見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1617620223087[].subitem_heading_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Heading\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Heading\", \"ja\": \"見出し\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591601\", \"items\": [{\"key\": \"item_1698591601[].original_language\", \"type\": \"text\", \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"原文の言語\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Original Language\", \"ja\": \"原文の言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591602\", \"items\": [{\"key\": \"item_1698591602[].volume_title\", \"type\": \"text\", \"title\": \"Edition\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591602[].volume_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"部編名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_type\", \"type\": \"select\", \"title\": \"Contributor Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"HostingInstitution\", \"value\": \"HostingInstitution\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_contributors[].contributor_names\", \"items\": [{\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name\", \"type\": \"text\", \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_contributors[].contributor_names[].contributor_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor Name\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Contributor\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Contributor\", \"ja\": \"提供機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_identifiers\", \"items\": [{\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier_type\", \"type\": \"select\", \"title\": \"Identifier Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_identifiers[].catalog_identifier\", \"type\": \"text\", \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Identifier\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_titles\", \"items\": [{\"key\": \"item_1698591603[].catalog_titles[].catalog_title\", \"type\": \"text\", \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_titles[].catalog_title_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Title\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_descriptions\", \"items\": [{\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_type\", \"type\": \"select\", \"title\": \"Description Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Methods\", \"value\": \"Methods\"}, {\"name\": \"TableOfContents\", \"value\": \"TableOfContents\"}, {\"name\": \"TechnicalInfo\", \"value\": \"TechnicalInfo\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description\", \"type\": \"textarea\", \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_descriptions[].catalog_description_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_subjects\", \"items\": [{\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject\", \"type\": \"text\", \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_scheme\", \"type\": \"select\", \"title\": \"Subject Scheme\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"BSH\", \"value\": \"BSH\"}, {\"name\": \"DDC\", \"value\": \"DDC\"}, {\"name\": \"e-Rad_field\", \"value\": \"e-Rad_field\"}, {\"name\": \"JEL\", \"value\": \"JEL\"}, {\"name\": \"LCC\", \"value\": \"LCC\"}, {\"name\": \"LCSH\", \"value\": \"LCSH\"}, {\"name\": \"MeSH\", \"value\": \"MeSH\"}, {\"name\": \"NDC\", \"value\": \"NDC\"}, {\"name\": \"NDLC\", \"value\": \"NDLC\"}, {\"name\": \"NDLSH\", \"value\": \"NDLSH\"}, {\"name\": \"SciVal\", \"value\": \"SciVal\"}, {\"name\": \"UDC\", \"value\": \"UDC\"}, {\"name\": \"Other\", \"value\": \"Other\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_subjects[].catalog_subject_uri\", \"type\": \"text\", \"title\": \"Subject URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Subject\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_licenses\", \"items\": [{\"key\": \"item_1698591603[].catalog_licenses[].catalog_license\", \"type\": \"text\", \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_type\", \"type\": \"select\", \"title\": \"License Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"file\", \"value\": \"file\"}, {\"name\": \"metadata\", \"value\": \"metadata\"}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_licenses[].catalog_license_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"License\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_rights[].catalog_right\", \"type\": \"text\", \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_rights[].catalog_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591603[].catalog_access_rights\", \"items\": [{\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right\", \"type\": \"select\", \"title\": \"アクセス権\", \"isHide\": false, \"onChange\": \"changedAccessRights(this, modelValue)\", \"required\": false, \"titleMap\": [{\"name\": \"embargoed access\", \"value\": \"embargoed access\"}, {\"name\": \"metadata only access\", \"value\": \"metadata only access\"}, {\"name\": \"open access\", \"value\": \"open access\"}, {\"name\": \"restricted access\", \"value\": \"restricted access\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_access_rights[].catalog_access_right_rdf_resource\", \"type\": \"text\", \"title\": \"RDF Resource\", \"isHide\": false, \"readonly\": true, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"txt-access-rights-uri\", \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Access Rights\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591603[].catalog_file.catalog_file_uri\", \"type\": \"text\", \"title\": \"File URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591603[].catalog_file.catalog_file_object_type\", \"type\": \"select\", \"title\": \"Object Type\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"thumbnail\", \"value\": \"thumbnail\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"カタログ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Catalog\", \"ja\": \"カタログ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591604\", \"items\": [{\"key\": \"item_1698591604[].jpcoar_format\", \"type\": \"text\", \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591604[].jpcoar_format_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"物理的形態\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591605\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1698591605[].jpcoar_dataset_series\", \"type\": \"select\", \"title\": \"Dataset Series\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"True\", \"value\": \"True\"}, {\"name\": \"False\", \"value\": \"False\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"title_i18n_temp\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"データセットシリーズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591606\", \"items\": [{\"key\": \"item_1698591606[].edition\", \"type\": \"text\", \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591606[].edition_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"版\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591607\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591607[].holding_agent_names\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name\", \"type\": \"text\", \"title\": \"所蔵機関名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_names[].holding_agent_name_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier\", \"items\": [{\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_value\", \"type\": \"text\", \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_scheme\", \"type\": \"select\", \"title\": \"所蔵機関識別子スキーマ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"kakenhi【非推奨】\", \"value\": \"kakenhi\"}, {\"name\": \"ISNI\", \"value\": \"ISNI\"}, {\"name\": \"Ringgold\", \"value\": \"Ringgold\"}, {\"name\": \"GRID【非推奨】\", \"value\": \"GRID\"}, {\"name\": \"ROR\", \"value\": \"ROR\"}, {\"name\": \"FANO\", \"value\": \"FANO\"}, {\"name\": \"ISIL\", \"value\": \"ISIL\"}, {\"name\": \"MARC\", \"value\": \"MARC\"}, {\"name\": \"OCLC\", \"value\": \"OCLC\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591607[].holding_agent_name_identifier.holding_agent_name_identifier_uri\", \"type\": \"text\", \"title\": \"所蔵機関識別子URI\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"title\": \"所蔵機関識別子\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"所蔵機関\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Holding Agent\", \"ja\": \"所蔵機関\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591608\", \"items\": [{\"key\": \"item_1698591608[].subitem_dcterms_date\", \"type\": \"text\", \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591608[].subitem_dcterms_date_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付(リテラル)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date(Literal)\", \"ja\": \"日付(リテラル)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591609\", \"items\": [{\"key\": \"item_1698591609[].dcterms_extent\", \"type\": \"text\", \"title\": \"Extent\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591609[].dcterms_extent_language\", \"type\": \"select\", \"title\": \"Language\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"大きさ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610\", \"items\": [{\"add\": \"New\", \"key\": \"item_1698591610[].publisher_names\", \"items\": [{\"key\": \"item_1698591610[].publisher_names[].publisher_name\", \"type\": \"text\", \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_names[].publisher_name_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者名\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_descriptions\", \"items\": [{\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description\", \"type\": \"text\", \"title\": \"出版者注記\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1698591610[].publisher_descriptions[].publisher_description_language\", \"type\": \"select\", \"title\": \"言語\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"ja\", \"value\": \"ja\"}, {\"name\": \"ja-Kana\", \"value\": \"ja-Kana\"}, {\"name\": \"ja-Latn\", \"value\": \"ja-Latn\"}, {\"name\": \"en\", \"value\": \"en\"}, {\"name\": \"fr\", \"value\": \"fr\"}, {\"name\": \"it\", \"value\": \"it\"}, {\"name\": \"de\", \"value\": \"de\"}, {\"name\": \"es\", \"value\": \"es\"}, {\"name\": \"zh-cn\", \"value\": \"zh-cn\"}, {\"name\": \"zh-tw\", \"value\": \"zh-tw\"}, {\"name\": \"ru\", \"value\": \"ru\"}, {\"name\": \"la\", \"value\": \"la\"}, {\"name\": \"ms\", \"value\": \"ms\"}, {\"name\": \"eo\", \"value\": \"eo\"}, {\"name\": \"ar\", \"value\": \"ar\"}, {\"name\": \"el\", \"value\": \"el\"}, {\"name\": \"ko\", \"value\": \"ko\"}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Publisher Description\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publisher_locations\", \"items\": [{\"key\": \"item_1698591610[].publisher_locations[].publisher_location\", \"type\": \"text\", \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1698591610[].publication_places\", \"items\": [{\"key\": \"item_1698591610[].publication_places[].publication_place\", \"type\": \"text\", \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版地(国名コード)\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"出版者情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Publisher Information\", \"ja\": \"出版者情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802\", \"items\": [{\"key\": \"item_1718082005802[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"isHide\": false, \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"item_1718082005802[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"fieldHtmlClass\": \"file-text-url\", \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"isHide\": false, \"feedback\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}, {\"key\": \"item_1718082005802[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"isHide\": false, \"feedback\": false, \"required\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].filesize\", \"items\": [{\"key\": \"item_1718082005802[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].fileDate\", \"items\": [{\"key\": \"item_1718082005802[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"isHide\": false, \"required\": false, \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].licensetype == ''license_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"isHide\": false, \"default\": \"open_restricted\", \"required\": false, \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}, {\"name\": \"制限公開\", \"value\": \"open_restricted\", \"name_i18n\": {\"en\": \"Limited Access\", \"ja\": \"制限公開\"}}], \"isShowList\": false, \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\", \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].roles\", \"items\": [{\"key\": \"item_1718082005802[].roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_date'' || model.item_1718082005802[arrayIndex].accessrole == ''open_login''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"add\": \"New\", \"key\": \"item_1718082005802[].provide\", \"items\": [{\"key\": \"item_1718082005802[].provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"WorkFlow\", \"ja\": \"ワークフロー\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"isShowList\": false, \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].terms\", \"type\": \"select\", \"title\": \"利用規約\", \"isHide\": false, \"required\": false, \"titleMap\": [], \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted''\", \"isShowList\": false, \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"item_1718082005802[].termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"isHide\": false, \"required\": false, \"condition\": \"model.item_1718082005802[arrayIndex].accessrole == ''open_restricted'' && model.item_1718082005802[arrayIndex].terms== ''term_free''\", \"isShowList\": false, \"isNonDisplay\": false, \"isSpecifyNewline\": false}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"Restricted File\", \"isHide\": false, \"required\": false, \"isShowList\": false, \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}, \"isNonDisplay\": false, \"isSpecifyNewline\": false}, {\"key\": \"system_identifier_doi\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(DOI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(DOI)\", \"ja\": \"永続識別子(DOI)\"}}, {\"key\": \"system_identifier_hdl\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(HDL)\", \"title_i18n\": {\"en\": \"Persistent Identifier(HDL)\", \"ja\": \"永続識別子(HDL)\"}}, {\"key\": \"system_identifier_uri\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_systemidt_identifier\", \"type\": \"text\", \"title\": \"SYSTEMIDT Identifier\"}, {\"key\": \"parentkey.subitem_systemidt_identifier_type\", \"type\": \"select\", \"title\": \"SYSTEMIDT Identifier Type\", \"titleMap\": [{\"name\": \"DOI\", \"value\": \"DOI\"}, {\"name\": \"HDL\", \"value\": \"HDL\"}, {\"name\": \"URI\", \"value\": \"URI\"}]}], \"title\": \"Persistent Identifier(URI)\", \"title_i18n\": {\"en\": \"Persistent Identifier(URI)\", \"ja\": \"永続識別子(URI)\"}}, {\"key\": \"system_file\", \"type\": \"fieldset\", \"items\": [{\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_filename\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_label\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename Label\"}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE Filename Type\", \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}, {\"name\": \"Fulltext\", \"value\": \"Fulltext\"}, {\"name\": \"Summary\", \"value\": \"Summary\"}, {\"name\": \"Thumbnail\", \"value\": \"Thumbnail\"}, {\"name\": \"Other\", \"value\": \"Other\"}]}, {\"key\": \"parentkey.subitem_systemfile_filename[].subitem_systemfile_filename_uri\", \"type\": \"text\", \"title\": \"SYSTEMFILE Filename URI\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE Filename\"}, {\"key\": \"parentkey.subitem_systemfile_mimetype\", \"type\": \"text\", \"title\": \"SYSTEMFILE MimeType\"}, {\"key\": \"parentkey.subitem_systemfile_size\", \"type\": \"text\", \"title\": \"SYSTEMFILE Size\"}, {\"add\": \"New\", \"key\": \"parentkey.subitem_systemfile_datetime\", \"items\": [{\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_date\", \"type\": \"template\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"yyyy-MM-dd\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_systemfile_datetime[].subitem_systemfile_datetime_type\", \"type\": \"select\", \"title\": \"SYSTEMFILE DateTime Type\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Available\", \"value\": \"Available\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Created\", \"value\": \"Created\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"SYSTEMFILE DateTime\"}, {\"key\": \"parentkey.subitem_systemfile_version\", \"type\": \"text\", \"title\": \"SYSTEMFILE Version\"}], \"title\": \"File Information\", \"title_i18n\": {\"en\": \"File Information\", \"ja\": \"ファイル情報\"}}], \"name\": \"制限公開2\", \"action\": \"upt\", \"schema\": {\"type\": \"object\", \"$schema\": \"http://json-schema.org/draft-04/schema#\", \"required\": [\"pubdate\", \"item_1617186331708\", \"item_1617258105262\"], \"properties\": {\"pubdate\": {\"type\": \"string\", \"title\": \"PubDate\", \"format\": \"datetime\"}, \"system_file\": {\"type\": \"object\", \"title\": \"File Information\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_size\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Size\", \"format\": \"text\"}, \"subitem_systemfile_version\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Version\", \"format\": \"text\"}, \"subitem_systemfile_datetime\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_datetime_date\": {\"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Date\", \"format\": \"datetime\"}, \"subitem_systemfile_datetime_type\": {\"enum\": [\"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": \"string\", \"title\": \"SYSTEMFILE DateTime Type\", \"format\": \"select\"}}}, \"title\": \"SYSTEMFILE DateTime\", \"format\": \"array\"}, \"subitem_systemfile_filename\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_systemfile_filename_uri\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename URI\", \"format\": \"text\"}, \"subitem_systemfile_filename_type\": {\"enum\": [\"Abstract\", \"Fulltext\", \"Summary\", \"Thumbnail\", \"Other\"], \"type\": \"string\", \"title\": \"SYSTEMFILE Filename Type\", \"format\": \"select\"}, \"subitem_systemfile_filename_label\": {\"type\": \"string\", \"title\": \"SYSTEMFILE Filename Label\", \"format\": \"text\"}}}, \"title\": \"SYSTEMFILE Filename\", \"format\": \"array\"}, \"subitem_systemfile_mimetype\": {\"type\": \"string\", \"title\": \"SYSTEMFILE MimeType\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1698591601\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"original_language\", \"format\": \"object\", \"properties\": {\"original_language\": {\"type\": \"string\", \"title\": \"Original Language\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"原文の言語\"}}}}, \"title\": \"原文の言語\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591602\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"volume_title\", \"format\": \"object\", \"properties\": {\"volume_title\": {\"type\": \"string\", \"title\": \"部編名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume Title\", \"ja\": \"部編名\"}}, \"volume_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"部編名\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591603\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"catalog\", \"format\": \"object\", \"properties\": {\"catalog_file\": {\"type\": \"object\", \"title\": \"File\", \"format\": \"object\", \"properties\": {\"catalog_file_uri\": {\"type\": \"string\", \"title\": \"File URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"File URI\", \"ja\": \"ファイルURI\"}}, \"catalog_file_object_type\": {\"enum\": [null, \"thumbnail\"], \"type\": \"string\", \"title\": \"Object Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}}}}, \"catalog_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_right\": {\"type\": \"string\", \"title\": \"Rights\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Rights\", \"ja\": \"権利情報\"}}, \"catalog_right_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_right_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"Rights\", \"format\": \"array\"}, \"catalog_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_title\": {\"type\": \"string\", \"title\": \"Title\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"catalog_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"format\": \"array\"}, \"catalog_licenses\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_license\": {\"type\": \"string\", \"title\": \"License\", \"format\": \"text\", \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, \"catalog_license_type\": {\"enum\": [null, \"file\", \"metadata\", \"thumbnail\"], \"type\": [\"null\", \"string\"], \"title\": \"License Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"License Type\", \"ja\": \"ライセンスタイプ\"}}, \"catalog_license_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"catalog_license_rdf_resource\": {\"type\": \"string\", \"title\": \"RDF Resource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"RDF Resource\", \"ja\": \"RDFリソース\"}}}}, \"title\": \"License\", \"format\": \"array\"}, \"catalog_subjects\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_subject\": {\"type\": \"string\", \"title\": \"Subject\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"catalog_subject_uri\": {\"type\": \"string\", \"title\": \"Subject URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"catalog_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Subject Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題スキーマ\"}}, \"catalog_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"format\": \"array\"}, \"catalog_identifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_identifier\": {\"type\": \"string\", \"title\": \"Identifier\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier\", \"ja\": \"識別子\"}}, \"catalog_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"Identifier Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Type\", \"ja\": \"識別子タイプ\"}}}}, \"title\": \"Identifier\", \"format\": \"array\"}, \"catalog_contributors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_type\": {\"enum\": [null, \"HostingInstitution\"], \"type\": [\"null\", \"string\"], \"title\": \"Contributor Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"提供機関タイプ\"}}, \"contributor_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributor_name\": {\"type\": \"string\", \"title\": \"Contributor Name\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name\", \"ja\": \"提供機関名\"}}, \"contributor_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Contributor Name\", \"format\": \"array\"}}}, \"title\": \"Contributor\", \"format\": \"array\"}, \"catalog_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"catalog_description\": {\"type\": \"string\", \"title\": \"Description\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"Description\", \"ja\": \"内容記述\"}}, \"catalog_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"Description Type\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Description Type\", \"ja\": \"内容記述タイプ\"}}, \"catalog_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}}}}, \"title\": \"Descriptions\", \"format\": \"array\"}, \"catalog_access_rights\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"アクセス権\", \"properties\": {\"catalog_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"catalog_access_right_rdf_resource\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"title\": \"Access Rights\", \"format\": \"array\"}}}, \"title\": \"カタログ\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591604\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"jpcoar_format\", \"format\": \"object\", \"properties\": {\"jpcoar_format\": {\"type\": \"string\", \"title\": \"物理的形態\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Physical Format\", \"ja\": \"物理的形態\"}}, \"jpcoar_format_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"物理的形態\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591605\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"データセットシリーズ\", \"format\": \"object\", \"properties\": {\"jpcoar_dataset_series\": {\"enum\": [null, \"True\", \"False\"], \"type\": [\"null\", \"string\"], \"title\": \"Dataset Series\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Dataset Series\", \"ja\": \"データセットシリーズ\"}}}}, \"title\": \"データセットシリーズ\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591606\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"edition\", \"format\": \"object\", \"properties\": {\"edition\": {\"type\": \"string\", \"title\": \"版\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Edition\", \"ja\": \"版\"}}, \"edition_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"版\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"holding_agent_name\", \"format\": \"object\", \"properties\": {\"holding_agent_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"holding_agent_name\": {\"type\": \"string\", \"title\": \"所蔵機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name\", \"ja\": \"所蔵機関名\"}}, \"holding_agent_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所蔵機関名\", \"format\": \"array\"}, \"holding_agent_name_identifier\": {\"type\": \"object\", \"title\": \"所蔵機関識別子\", \"format\": \"object\", \"properties\": {\"holding_agent_name_identifier_uri\": {\"type\": \"string\", \"title\": \"所蔵機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier URI\", \"ja\": \"所蔵機関識別子URI\"}}, \"holding_agent_name_identifier_value\": {\"type\": \"string\", \"title\": \"所蔵機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier\", \"ja\": \"所蔵機関識別子\"}}, \"holding_agent_name_identifier_scheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"], \"type\": \"string\", \"title\": \"所蔵機関識別子スキーマ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Holding Agent Name Identifier Schema\", \"ja\": \"所蔵機関識別子スキーマ\"}, \"currentEnum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\", \"FANO\", \"ISIL\", \"MARC\", \"OCLC\"]}}}}}, \"title\": \"所蔵機関\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591608\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_date\", \"format\": \"object\", \"properties\": {\"subitem_dcterms_date\": {\"type\": \"string\", \"title\": \"日付(リテラル)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Date Literal\", \"ja\": \"日付(リテラル)\"}}, \"subitem_dcterms_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}, \"system_prop\": false}, \"title\": \"日付(リテラル)\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591609\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"dcterms_extent\", \"format\": \"object\", \"properties\": {\"dcterms_extent\": {\"type\": \"string\", \"title\": \"Extent\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Extent\", \"ja\": \"大きさ\"}}, \"dcterms_extent_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"Language\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"大きさ\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1698591610\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"publisher_information\", \"format\": \"object\", \"properties\": {\"publisher_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_name\": {\"type\": \"string\", \"title\": \"出版者名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Name\", \"ja\": \"出版者名\"}}, \"publisher_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": \"string\", \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者名\", \"format\": \"array\"}, \"publication_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publication_place\": {\"type\": \"string\", \"title\": \"出版地(国名コード)\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place (Country code)\", \"ja\": \"出版地(国名コード)\"}}}}, \"title\": \"出版地(国名コード)\", \"format\": \"array\"}, \"publisher_locations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_location\": {\"type\": \"string\", \"title\": \"出版地\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publication Place\", \"ja\": \"出版地\"}}}}, \"title\": \"出版地\", \"format\": \"array\"}, \"publisher_descriptions\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"publisher_description\": {\"type\": \"string\", \"title\": \"出版者注記\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher Description\", \"ja\": \"出版者注記\"}}, \"publisher_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"出版者注記\", \"format\": \"array\"}}}, \"title\": \"出版者情報\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186331708\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Title\", \"ja\": \"タイトル\"}}, \"subitem_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Title\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186385884\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_alternative_title\": {\"type\": \"string\", \"title\": \"その他のタイトル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Title\", \"ja\": \"その他のタイトル\"}}, \"subitem_alternative_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Alternative Title\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186419668\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"iscreator\": {\"type\": \"string\", \"title\": \"iscreator\", \"format\": \"text\"}, \"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者名\", \"format\": \"array\"}, \"creatorType\": {\"type\": \"string\", \"title\": \"作成者タイプ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Type\", \"ja\": \"作成者タイプ\"}}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者姓\", \"format\": \"array\"}, \"creatorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"作成者メールアドレス\", \"format\": \"array\"}, \"creatorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}, \"creatorNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"creatorNameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}, \"currentEnum\": [\"Personal\", \"Organizational\"]}}}, \"title\": \"作成者姓名\", \"format\": \"array\"}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"作成者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier\", \"ja\": \"作成者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"作成者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Creator Name Identifier URI\", \"ja\": \"作成者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"作成者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"IdentifierScheme\", \"ja\": \"作成者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"作成者識別子\", \"format\": \"array\"}, \"creatorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"affiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"affiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"affiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier\", \"ja\": \"所属機関識別子\"}}, \"affiliationNameIdentifierURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"affiliationNameIdentifierScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"作成者所属\", \"format\": \"array\"}, \"creatorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"creatorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"creatorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"作成者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Creator\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186476635\": {\"type\": \"object\", \"title\": \"Access Rights\", \"format\": \"object\", \"properties\": {\"subitem_access_right\": {\"enum\": [null, \"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス権\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Access Rights\", \"ja\": \"アクセス権\"}, \"currentEnum\": [\"embargoed access\", \"metadata only access\", \"open access\", \"restricted access\"]}, \"subitem_access_right_uri\": {\"type\": \"string\", \"title\": \"アクセス権URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Access Rights URI\", \"ja\": \"アクセス権URI\"}}}, \"system_prop\": true}, \"item_1617186499011\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_rights\": {\"type\": \"string\", \"title\": \"権利情報\", \"format\": \"text\"}, \"subitem_rights_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_rights_resource\": {\"type\": \"string\", \"title\": \"権利情報Resource\", \"format\": \"text\"}}}, \"title\": \"Rights\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186609386\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_subject\": {\"type\": \"string\", \"title\": \"主題\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject\", \"ja\": \"主題\"}}, \"subitem_subject_uri\": {\"type\": \"string\", \"title\": \"主題URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Subject URI\", \"ja\": \"主題URI\"}}, \"subitem_subject_scheme\": {\"enum\": [null, \"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"主題Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Subject Scheme\", \"ja\": \"主題Scheme\"}, \"currentEnum\": [\"BSH\", \"DDC\", \"e-Rad_field\", \"JEL\", \"LCC\", \"LCSH\", \"MeSH\", \"NDC\", \"NDLC\", \"NDLSH\", \"SciVal\", \"UDC\", \"Other\"]}, \"subitem_subject_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Subject\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186626617\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_description\": {\"type\": \"string\", \"title\": \"内容記述\", \"format\": \"textarea\"}, \"subitem_description_type\": {\"enum\": [null, \"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"内容記述タイプ\", \"format\": \"select\", \"currentEnum\": [\"Abstract\", \"Methods\", \"TableOfContents\", \"TechnicalInfo\", \"Other\"]}, \"subitem_description_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Description\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186643794\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_publisher\": {\"type\": \"string\", \"title\": \"出版者\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Publisher\", \"ja\": \"出版者\"}}, \"subitem_publisher_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Publisher\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186660861\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_date_issued_type\": {\"enum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"Accepted\", \"Available\", \"Collected\", \"Copyrighted\", \"Created\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"subitem_date_issued_datetime\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}}}, \"title\": \"Date\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186702042\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_language\": {\"enum\": [null, \"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"jpn\", \"eng\", \"aar\", \"abk\", \"afr\", \"aka\", \"amh\", \"ara\", \"arg\", \"asm\", \"ava\", \"ave\", \"aym\", \"aze\", \"bak\", \"bam\", \"bel\", \"ben\", \"bis\", \"bod\", \"bos\", \"bre\", \"bul\", \"cat\", \"ces\", \"cha\", \"che\", \"chu\", \"chv\", \"cor\", \"cos\", \"cre\", \"cym\", \"dan\", \"deu\", \"div\", \"dzo\", \"ell\", \"epo\", \"est\", \"eus\", \"ewe\", \"fao\", \"fas\", \"fij\", \"fin\", \"fra\", \"fry\", \"ful\", \"gla\", \"gle\", \"glg\", \"glv\", \"grn\", \"guj\", \"hat\", \"hau\", \"heb\", \"her\", \"hin\", \"hmo\", \"hrv\", \"hun\", \"hye\", \"ibo\", \"ido\", \"iii\", \"iku\", \"ile\", \"ina\", \"ind\", \"ipk\", \"isl\", \"ita\", \"jav\", \"kal\", \"kan\", \"kas\", \"kat\", \"kau\", \"kaz\", \"khm\", \"kik\", \"kin\", \"kir\", \"kom\", \"kon\", \"kor\", \"kua\", \"kur\", \"lao\", \"lat\", \"lav\", \"lim\", \"lin\", \"lit\", \"ltz\", \"lub\", \"lug\", \"mah\", \"mal\", \"mar\", \"mkd\", \"mlg\", \"mlt\", \"mon\", \"mri\", \"msa\", \"mya\", \"nau\", \"nav\", \"nbl\", \"nde\", \"ndo\", \"nep\", \"nld\", \"nno\", \"nob\", \"nor\", \"nya\", \"oci\", \"oji\", \"ori\", \"orm\", \"oss\", \"pan\", \"pli\", \"pol\", \"por\", \"pus\", \"que\", \"roh\", \"ron\", \"run\", \"rus\", \"sag\", \"san\", \"sin\", \"slk\", \"slv\", \"sme\", \"smo\", \"sna\", \"snd\", \"som\", \"sot\", \"spa\", \"sqi\", \"srd\", \"srp\", \"ssw\", \"sun\", \"swa\", \"swe\", \"tah\", \"tam\", \"tat\", \"tel\", \"tgk\", \"tgl\", \"tha\", \"tir\", \"ton\", \"tsn\", \"tso\", \"tuk\", \"tur\", \"twi\", \"uig\", \"ukr\", \"urd\", \"uzb\", \"ven\", \"vie\", \"vol\", \"wln\", \"wol\", \"xho\", \"yid\", \"yor\", \"zha\", \"zho\", \"zul\"]}}}, \"title\": \"Language\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186783814\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_identifier_uri\": {\"type\": \"string\", \"title\": \"識別子\", \"format\": \"text\"}, \"subitem_identifier_type\": {\"enum\": [null, \"DOI\", \"HDL\", \"URI\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Identifier\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186819068\": {\"type\": \"object\", \"title\": \"Identifier Registration\", \"format\": \"object\", \"properties\": {\"subitem_identifier_reg_text\": {\"type\": \"string\", \"title\": \"ID登録\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Identifier Registration\", \"ja\": \"ID登録\"}}, \"subitem_identifier_reg_type\": {\"enum\": [null, \"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"], \"type\": [\"null\", \"string\"], \"title\": \"ID登録タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Identifier Registration Type\", \"ja\": \"ID登録タイプ\"}, \"currentEnum\": [\"JaLC\", \"Crossref\", \"DataCite\", \"PMID\"]}}}, \"item_1617186859717\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_temporal_text\": {\"type\": \"string\", \"title\": \"時間的範囲\", \"format\": \"text\"}, \"subitem_temporal_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Temporal\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186882738\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_box\": {\"type\": \"object\", \"title\": \"位置情報(空間)\", \"format\": \"object\", \"properties\": {\"subitem_east_longitude\": {\"type\": \"string\", \"title\": \"東部経度\", \"format\": \"text\"}, \"subitem_north_latitude\": {\"type\": \"string\", \"title\": \"北部緯度\", \"format\": \"text\"}, \"subitem_south_latitude\": {\"type\": \"string\", \"title\": \"南部緯度\", \"format\": \"text\"}, \"subitem_west_longitude\": {\"type\": \"string\", \"title\": \"西部経度\", \"format\": \"text\"}}}, \"subitem_geolocation_place\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_geolocation_place_text\": {\"type\": \"string\", \"title\": \"位置情報(自由記述)\", \"format\": \"text\"}}}, \"title\": \"位置情報(自由記述)\", \"format\": \"array\"}, \"subitem_geolocation_point\": {\"type\": \"object\", \"title\": \"位置情報(点)\", \"format\": \"object\", \"properties\": {\"subitem_point_latitude\": {\"type\": \"string\", \"title\": \"緯度\", \"format\": \"text\"}, \"subitem_point_longitude\": {\"type\": \"string\", \"title\": \"経度\", \"format\": \"text\"}}}}}, \"title\": \"Geo Location\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186901218\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_award_title\": {\"type\": \"string\", \"title\": \"研究課題名\", \"format\": \"text\"}, \"subitem_award_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"研究課題名\", \"format\": \"array\"}, \"subitem_funder_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funder_name\": {\"type\": \"string\", \"title\": \"助成機関名\", \"format\": \"text\"}, \"subitem_funder_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"助成機関名\", \"format\": \"array\"}, \"subitem_award_numbers\": {\"type\": \"object\", \"title\": \"研究課題番号\", \"format\": \"object\", \"properties\": {\"subitem_award_uri\": {\"type\": \"string\", \"title\": \"研究課題番号URI\", \"format\": \"text\"}, \"subitem_award_number\": {\"type\": \"string\", \"title\": \"研究課題番号\", \"format\": \"text\"}, \"subitem_award_number_type\": {\"enum\": [null, \"JGN\"], \"type\": [\"null\", \"string\"], \"title\": \"研究課題番号タイプ\", \"format\": \"select\"}}}, \"subitem_funding_streams\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream\": {\"type\": \"string\", \"title\": \"プログラム情報\", \"format\": \"text\"}, \"subitem_funding_stream_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"プログラム情報\", \"format\": \"array\"}, \"subitem_funder_identifiers\": {\"type\": \"object\", \"title\": \"助成機関識別子\", \"format\": \"object\", \"properties\": {\"subitem_funder_identifier\": {\"type\": \"string\", \"title\": \"助成機関識別子\", \"format\": \"text\"}, \"subitem_funder_identifier_type\": {\"enum\": [null, \"Crossref Funder\", \"e-Rad_funder\", \"GRID\", \"ISNI\", \"ROR\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"助成機関識別子タイプ\", \"format\": \"select\"}, \"subitem_funder_identifier_type_uri\": {\"type\": \"string\", \"title\": \"助成機関識別子タイプURI\", \"format\": \"text\"}}}, \"subitem_funding_stream_identifiers\": {\"type\": \"object\", \"title\": \"プログラム情報識別子\", \"format\": \"object\", \"properties\": {\"subitem_funding_stream_identifier\": {\"type\": \"string\", \"title\": \"プログラム情報識別子\", \"format\": \"text\"}, \"subitem_funding_stream_identifier_type\": {\"enum\": [\"Crossref Funder\", \"JGN_fundingStream\"], \"type\": [\"null\", \"string\"], \"title\": \"プログラム情報識別子タイプ\", \"format\": \"select\"}, \"subitem_funding_stream_identifier_type_uri\": {\"type\": \"string\", \"title\": \"プログラム情報識別子タイプURI\", \"format\": \"text\"}}}}}, \"title\": \"Funding Reference\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186920753\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_identifier\": {\"type\": \"string\", \"title\": \"収録物識別子\", \"format\": \"text\"}, \"subitem_source_identifier_type\": {\"enum\": [null, \"PISSN\", \"EISSN\", \"ISSN\", \"NCID\"], \"type\": [\"null\", \"string\"], \"title\": \"収録物識別子タイプ\", \"format\": \"select\"}}}, \"title\": \"Source Identifier\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186941041\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_source_title\": {\"type\": \"string\", \"title\": \"収録物名\", \"format\": \"text\"}, \"subitem_source_title_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Source Title\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617186959569\": {\"type\": \"object\", \"title\": \"Volume Number\", \"format\": \"object\", \"properties\": {\"subitem_volume\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Volume\", \"ja\": \"巻\"}}}}, \"item_1617186981471\": {\"type\": \"object\", \"title\": \"Issue Number\", \"format\": \"object\", \"properties\": {\"subitem_issue\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Issue\", \"ja\": \"号\"}}}}, \"item_1617186994930\": {\"type\": \"object\", \"title\": \"Number of Pages\", \"format\": \"object\", \"properties\": {\"subitem_number_of_pages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Number of Pages\", \"ja\": \"ページ数\"}}}}, \"item_1617187024783\": {\"type\": \"object\", \"title\": \"Page Start\", \"format\": \"object\", \"properties\": {\"subitem_start_page\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Start Page\", \"ja\": \"開始ページ\"}}}}, \"item_1617187045071\": {\"type\": \"object\", \"title\": \"Page End\", \"format\": \"object\", \"properties\": {\"subitem_end_page\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"End Page\", \"ja\": \"終了ページ\"}}}}, \"item_1617187056579\": {\"type\": \"object\", \"title\": \"Bibliographic Information\", \"format\": \"object\", \"properties\": {\"bibliographicPageEnd\": {\"type\": \"string\", \"title\": \"終了ページ\", \"format\": \"text\"}, \"bibliographic_titles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"bibliographic_title\": {\"type\": \"string\", \"title\": \"タイトル\", \"format\": \"text\"}, \"bibliographic_titleLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"雑誌名\", \"format\": \"array\"}, \"bibliographicPageStart\": {\"type\": \"string\", \"title\": \"開始ページ\", \"format\": \"text\"}, \"bibliographicIssueDates\": {\"type\": \"object\", \"title\": \"発行日\", \"format\": \"object\", \"properties\": {\"bibliographicIssueDate\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}, \"bibliographicIssueDateType\": {\"enum\": [null, \"\", \"Issued\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"\", \"Issued\"]}}}, \"bibliographicIssueNumber\": {\"type\": \"string\", \"title\": \"号\", \"format\": \"text\"}, \"bibliographicVolumeNumber\": {\"type\": \"string\", \"title\": \"巻\", \"format\": \"text\"}, \"bibliographicNumberOfPages\": {\"type\": \"string\", \"title\": \"ページ数\", \"format\": \"text\"}}, \"system_prop\": true}, \"item_1617187087799\": {\"type\": \"object\", \"title\": \"Dissertation Number\", \"format\": \"object\", \"properties\": {\"subitem_dissertationnumber\": {\"type\": \"string\", \"title\": \"学位授与番号\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Dissertation Number\", \"ja\": \"学位授与番号\"}}}}, \"item_1617187112279\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"title\": \"学位名\", \"format\": \"object\", \"properties\": {\"subitem_degreename\": {\"type\": \"string\", \"title\": \"学位名\", \"format\": \"text\"}, \"subitem_degreename_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"Degree Name\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617187136212\": {\"type\": \"object\", \"title\": \"Date Granted\", \"format\": \"object\", \"properties\": {\"subitem_dategranted\": {\"type\": \"string\", \"title\": \"学位授与年月日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"Date Granted\", \"ja\": \"学位授与年月日\"}}}}, \"item_1617187187528\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_date\": {\"type\": \"object\", \"title\": \"開催期間\", \"format\": \"object\", \"properties\": {\"subitem_conference_period\": {\"type\": \"string\", \"title\": \"開催期間\", \"format\": \"text\"}, \"subitem_conference_end_day\": {\"type\": \"string\", \"title\": \"終了日\", \"format\": \"text\"}, \"subitem_conference_end_year\": {\"type\": \"string\", \"title\": \"終了年\", \"format\": \"text\"}, \"subitem_conference_end_month\": {\"type\": \"string\", \"title\": \"終了月\", \"format\": \"text\"}, \"subitem_conference_start_day\": {\"type\": \"string\", \"title\": \"開始日\", \"format\": \"text\"}, \"subitem_conference_start_year\": {\"type\": \"string\", \"title\": \"開始年\", \"format\": \"text\"}, \"subitem_conference_start_month\": {\"type\": \"string\", \"title\": \"開始月\", \"format\": \"text\"}, \"subitem_conference_date_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"subitem_conference_names\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_name\": {\"type\": \"string\", \"title\": \"会議名\", \"format\": \"text\"}, \"subitem_conference_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"会議名\", \"format\": \"array\"}, \"subitem_conference_places\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_place\": {\"type\": \"string\", \"title\": \"開催地\", \"format\": \"text\"}, \"subitem_conference_place_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催地\", \"format\": \"array\"}, \"subitem_conference_venues\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_venue\": {\"type\": \"string\", \"title\": \"開催会場\", \"format\": \"text\"}, \"subitem_conference_venue_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"開催会場\", \"format\": \"array\"}, \"subitem_conference_country\": {\"enum\": [null, \"JPN\", \"ABW\", \"AFG\", \"AGO\", \"AIA\", \"ALA\", \"ALB\", \"AND\", \"ARE\", \"ARG\", \"ARM\", \"ASM\", \"ATA\", \"ATF\", \"ATG\", \"AUS\", \"AUT\", \"AZE\", \"BDI\", \"BEL\", \"BEN\", \"BES\", \"BFA\", \"BGD\", \"BGR\", \"BHR\", \"BHS\", \"BIH\", \"BLM\", \"BLR\", \"BLZ\", \"BMU\", \"BOL\", \"BRA\", \"BRB\", \"BRN\", \"BTN\", \"BVT\", \"BWA\", \"CAF\", \"CAN\", \"CCK\", \"CHE\", \"CHL\", \"CHN\", \"CIV\", \"CMR\", \"COD\", \"COG\", \"COK\", \"COL\", \"COM\", \"CPV\", \"CRI\", \"CUB\", \"CUW\", \"CXR\", \"CYM\", \"CYP\", \"CZE\", \"DEU\", \"DJI\", \"DMA\", \"DNK\", \"DOM\", \"DZA\", \"ECU\", \"EGY\", \"ERI\", \"ESH\", \"ESP\", \"EST\", \"ETH\", \"FIN\", \"FJI\", \"FLK\", \"FRA\", \"FRO\", \"FSM\", \"GAB\", \"GBR\", \"GEO\", \"GGY\", \"GHA\", \"GIB\", \"GIN\", \"GLP\", \"GMB\", \"GNB\", \"GNQ\", \"GRC\", \"GRD\", \"GRL\", \"GTM\", \"GUF\", \"GUM\", \"GUY\", \"HKG\", \"HMD\", \"HND\", \"HRV\", \"HTI\", \"HUN\", \"IDN\", \"IMN\", \"IND\", \"IOT\", \"IRL\", \"IRN\", \"IRQ\", \"ISL\", \"ISR\", \"ITA\", \"JAM\", \"JEY\", \"JOR\", \"KAZ\", \"KEN\", \"KGZ\", \"KHM\", \"KIR\", \"KNA\", \"KOR\", \"KWT\", \"LAO\", \"LBN\", \"LBR\", \"LBY\", \"LCA\", \"LIE\", \"LKA\", \"LSO\", \"LTU\", \"LUX\", \"LVA\", \"MAC\", \"MAF\", \"MAR\", \"MCO\", \"MDA\", \"MDG\", \"MDV\", \"MEX\", \"MHL\", \"MKD\", \"MLI\", \"MLT\", \"MMR\", \"MNE\", \"MNG\", \"MNP\", \"MOZ\", \"MRT\", \"MSR\", \"MTQ\", \"MUS\", \"MWI\", \"MYS\", \"MYT\", \"NAM\", \"NCL\", \"NER\", \"NFK\", \"NGA\", \"NIC\", \"NIU\", \"NLD\", \"NOR\", \"NPL\", \"NRU\", \"NZL\", \"OMN\", \"PAK\", \"PAN\", \"PCN\", \"PER\", \"PHL\", \"PLW\", \"PNG\", \"POL\", \"PRI\", \"PRK\", \"PRT\", \"PRY\", \"PSE\", \"PYF\", \"QAT\", \"REU\", \"ROU\", \"RUS\", \"RWA\", \"SAU\", \"SDN\", \"SEN\", \"SGP\", \"SGS\", \"SHN\", \"SJM\", \"SLB\", \"SLE\", \"SLV\", \"SMR\", \"SOM\", \"SPM\", \"SRB\", \"SSD\", \"STP\", \"SUR\", \"SVK\", \"SVN\", \"SWE\", \"SWZ\", \"SXM\", \"SYC\", \"SYR\", \"TCA\", \"TCD\", \"TGO\", \"THA\", \"TJK\", \"TKL\", \"TKM\", \"TLS\", \"TON\", \"TTO\", \"TUN\", \"TUR\", \"TUV\", \"TWN\", \"TZA\", \"UGA\", \"UKR\", \"UMI\", \"URY\", \"USA\", \"UZB\", \"VAT\", \"VCT\", \"VEN\", \"VGB\", \"VIR\", \"VNM\", \"VUT\", \"WLF\", \"WSM\", \"YEM\", \"ZAF\", \"ZMB\", \"ZWE\"], \"type\": [\"null\", \"string\"], \"title\": \"開催国\", \"format\": \"select\"}, \"subitem_conference_sequence\": {\"type\": \"string\", \"title\": \"回次\", \"format\": \"text\"}, \"subitem_conference_sponsors\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_conference_sponsor\": {\"type\": \"string\", \"title\": \"主催機関\", \"format\": \"text\"}, \"subitem_conference_sponsor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"主催機関\", \"format\": \"array\"}}}, \"title\": \"Conference\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617258105262\": {\"type\": \"object\", \"title\": \"Resource Type\", \"format\": \"object\", \"properties\": {\"resourceuri\": {\"type\": \"string\", \"title\": \"資源タイプ識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Resource Type Identifier\", \"ja\": \"資源タイプ識別子\"}}, \"resourcetype\": {\"enum\": [null, \"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"], \"type\": [\"null\", \"string\"], \"title\": \"資源タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Resource Type\", \"ja\": \"資源タイプ \"}, \"currentEnum\": [\"conference paper\", \"data paper\", \"departmental bulletin paper\", \"editorial\", \"journal\", \"journal article\", \"newspaper\", \"review article\", \"other periodical\", \"software paper\", \"article\", \"book\", \"book part\", \"cartographic material\", \"map\", \"conference output\", \"conference presentation\", \"conference proceedings\", \"conference poster\", \"aggregated data\", \"clinical trial data\", \"compiled data\", \"dataset\", \"encoded data\", \"experimental data\", \"genomic data\", \"geospatial data\", \"laboratory notebook\", \"measurement and test data\", \"observational data\", \"recorded data\", \"simulation data\", \"survey data\", \"image\", \"still image\", \"moving image\", \"video\", \"lecture\", \"design patent\", \"patent\", \"PCT application\", \"plant patent\", \"plant variety protection\", \"software patent\", \"trademark\", \"utility model\", \"report\", \"research report\", \"technical report\", \"policy report\", \"working paper\", \"data management plan\", \"sound\", \"thesis\", \"bachelor thesis\", \"master thesis\", \"doctoral thesis\", \"commentary\", \"design\", \"industrial design\", \"interactive resource\", \"layout design\", \"learning object\", \"manuscript\", \"musical notation\", \"peer review\", \"research proposal\", \"research protocol\", \"software\", \"source code\", \"technical documentation\", \"transcription\", \"workflow\", \"other\"]}}, \"system_prop\": true}, \"item_1617265215918\": {\"type\": \"object\", \"title\": \"Version Type\", \"format\": \"object\", \"properties\": {\"subitem_version_type\": {\"enum\": [null, \"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"], \"type\": [\"null\", \"string\"], \"title\": \"出版タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Version Type\", \"ja\": \"出版タイプ\"}, \"currentEnum\": [\"AO\", \"SMUR\", \"AM\", \"P\", \"VoR\", \"CVoR\", \"EVoR\", \"NA\"]}, \"subitem_peer_reviewed\": {\"enum\": [null, \"Peer reviewed\", \"Not peer reviewed\"], \"type\": [\"null\", \"string\"], \"title\": \"査読の有無\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Peer reviewed/Not peer reviewed\", \"ja\": \"査読の有無\"}, \"currentEnum\": [\"Peer reviewed\", \"Not peer reviewed\"]}, \"subitem_version_resource\": {\"type\": \"string\", \"title\": \"出版タイプResource\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version Type Resource\", \"ja\": \"出版タイプResource\"}}}, \"system_prop\": true}, \"item_1617349709064\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"givenName\": {\"type\": \"string\", \"title\": \"名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Given Name\", \"ja\": \"名\"}}, \"givenNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者名\", \"format\": \"array\"}, \"familyNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"familyName\": {\"type\": \"string\", \"title\": \"姓\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Family Name\", \"ja\": \"姓\"}}, \"familyNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者姓\", \"format\": \"array\"}, \"contributorType\": {\"enum\": [null, \"ContactPerson\", \"DataCollector\", \"DataCurator\", \"DataManager\", \"Distributor\", \"Editor\", \"HostingInstitution\", \"Producer\", \"ProjectLeader\", \"ProjectManager\", \"ProjectMember\", \"RelatedPerson\", \"Researcher\", \"ResearchGroup\", \"Sponsor\", \"Supervisor\", \"WorkPackageLeader\", \"Other\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者タイプ\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Type\", \"ja\": \"寄与者タイプ\"}}, \"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"寄与者識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier\", \"ja\": \"寄与者識別子\"}}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"寄与者識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Contributor Name Identifier URI\", \"ja\": \"寄与者識別子URI\"}}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"寄与者識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Contributor Name Identifier Scheme\", \"ja\": \"寄与者識別子Scheme\"}, \"currentEnum\": [\"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"]}}}, \"title\": \"寄与者識別子\", \"format\": \"array\"}, \"contributorMails\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorMail\": {\"type\": \"string\", \"title\": \"メールアドレス\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Email Address\", \"ja\": \"メールアドレス\"}}}}, \"title\": \"寄与者メールアドレス\", \"format\": \"array\"}, \"contributorNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"lang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"nameType\": {\"enum\": [null, \"Personal\", \"Organizational\"], \"type\": [\"null\", \"string\"], \"title\": \"名前タイプ\", \"format\": \"select\", \"editAble\": false, \"title_i18n\": {\"en\": \"Name Type\", \"ja\": \"名前タイプ\"}}, \"contributorName\": {\"type\": \"string\", \"title\": \"姓名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"姓名\"}}}}, \"title\": \"寄与者姓名\", \"format\": \"array\"}, \"contributorAffiliations\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationName\": {\"type\": \"string\", \"title\": \"所属機関名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name\", \"ja\": \"所属機関名\"}}, \"contributorAffiliationNameLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"所属機関名\", \"format\": \"array\"}, \"contributorAffiliationNameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAffiliationURI\": {\"type\": \"string\", \"title\": \"所属機関識別子URI\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier URI\", \"ja\": \"所属機関識別子URI\"}}, \"contributorAffiliationScheme\": {\"enum\": [null, \"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"所属機関識別子Scheme\", \"format\": \"select\", \"title_i18n\": {\"en\": \"Affiliation Name Identifier Scheme\", \"ja\": \"所属機関識別子Scheme\"}, \"currentEnum\": [\"kakenhi\", \"ISNI\", \"Ringgold\", \"GRID\", \"ROR\"]}, \"contributorAffiliationNameIdentifier\": {\"type\": \"string\", \"title\": \"所属機関識別子\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Affiliation Name Identifiers\", \"ja\": \"所属機関識別子\"}}}}, \"title\": \"所属機関識別子\", \"format\": \"array\"}}}, \"title\": \"寄与者所属\", \"format\": \"array\"}, \"contributorAlternatives\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"contributorAlternative\": {\"type\": \"string\", \"title\": \"別名\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Alternative Name\", \"ja\": \"別名\"}}, \"contributorAlternativeLang\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"title_i18n\": {\"en\": \"Language\", \"ja\": \"言語\"}, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"寄与者別名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Contributor\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617349808926\": {\"type\": \"object\", \"title\": \"Version\", \"format\": \"object\", \"properties\": {\"subitem_version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"Version\", \"ja\": \"バージョン情報\"}}}}, \"item_1617351524846\": {\"type\": \"object\", \"title\": \"APC\", \"format\": \"object\", \"properties\": {\"subitem_apc\": {\"enum\": [null, \"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"], \"type\": [\"null\", \"string\"], \"title\": \"APC\", \"format\": \"select\", \"title_i18n\": {\"en\": \"APC\", \"ja\": \"APC\"}, \"currentEnum\": [\"Paid\", \"Partially waived\", \"Fully waived\", \"Not charged\", \"Not required\", \"Unknown\"]}}}, \"item_1617353299429\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_relation_name_text\": {\"type\": \"string\", \"title\": \"関連名称\", \"format\": \"text\"}, \"subitem_relation_name_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"関連名称\", \"format\": \"array\"}, \"subitem_relation_type\": {\"enum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"], \"type\": [\"null\", \"string\"], \"title\": \"関連タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"isVersionOf\", \"hasVersion\", \"isPartOf\", \"hasPart\", \"isReferencedBy\", \"references\", \"isFormatOf\", \"hasFormat\", \"isReplacedBy\", \"replaces\", \"isRequiredBy\", \"requires\", \"isSupplementedBy\", \"isSupplementTo\", \"isIdenticalTo\", \"isDerivedFrom\", \"isSourceOf\", \"isCitedBy\", \"Cites\", \"inSeries\"]}, \"subitem_relation_type_id\": {\"type\": \"object\", \"title\": \"関連識別子\", \"format\": \"object\", \"properties\": {\"subitem_relation_type_select\": {\"enum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"], \"type\": [\"null\", \"string\"], \"title\": \"識別子タイプ\", \"format\": \"select\", \"currentEnum\": [null, \"ARK\", \"arXiv\", \"DOI\", \"HDL\", \"ICHUSHI\", \"ISBN\", \"J-GLOBAL\", \"Local\", \"PISSN\", \"EISSN\", \"ISSN\", \"NAID\", \"NCID\", \"PMID\", \"PURL\", \"SCOPUS\", \"URI\", \"WOS\", \"CRID\"]}, \"subitem_relation_type_id_text\": {\"type\": \"string\", \"title\": \"関連識別子\", \"format\": \"text\"}}}}}, \"title\": \"Relation\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617610673286\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifiers\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"nameIdentifier\": {\"type\": \"string\", \"title\": \"権利者識別子\", \"format\": \"text\"}, \"nameIdentifierURI\": {\"type\": \"string\", \"title\": \"権利者識別子URI\", \"format\": \"text\"}, \"nameIdentifierScheme\": {\"enum\": [null, \"e-Rad_Researcher\", \"NRID\", \"ORCID\", \"ISNI\", \"VIAF\", \"AID\", \"kakenhi\", \"Ringgold\", \"GRID\", \"ROR\"], \"type\": [\"null\", \"string\"], \"title\": \"権利者識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"権利者識別子\", \"format\": \"array\"}, \"rightHolderNames\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"rightHolderName\": {\"type\": \"string\", \"title\": \"権利者名\", \"format\": \"text\"}, \"rightHolderLanguage\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"権利者名\", \"format\": \"array\"}}, \"system_prop\": true}, \"title\": \"Rights Holder\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617620223087\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_heading_headline\": {\"type\": \"string\", \"title\": \"小見出し\", \"format\": \"text\"}, \"subitem_heading_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}, \"subitem_heading_banner_headline\": {\"type\": \"string\", \"title\": \"大見出し\", \"format\": \"text\"}}, \"system_prop\": true}, \"title\": \"Heading\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1617944105607\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_name\": {\"type\": \"string\", \"title\": \"学位授与機関名\", \"format\": \"text\"}, \"subitem_degreegrantor_language\": {\"enum\": [null, \"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"], \"type\": [\"null\", \"string\"], \"title\": \"言語\", \"format\": \"select\", \"editAble\": true, \"currentEnum\": [\"ja\", \"ja-Kana\", \"ja-Latn\", \"en\", \"fr\", \"it\", \"de\", \"es\", \"zh-cn\", \"zh-tw\", \"ru\", \"la\", \"ms\", \"eo\", \"ar\", \"el\", \"ko\"]}}}, \"title\": \"学位授与機関名\", \"format\": \"array\"}, \"subitem_degreegrantor_identifier\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_degreegrantor_identifier_name\": {\"type\": \"string\", \"title\": \"学位授与機関識別子\", \"format\": \"text\"}, \"subitem_degreegrantor_identifier_scheme\": {\"enum\": [null, \"kakenhi\"], \"type\": [\"null\", \"string\"], \"title\": \"学位授与機関識別子Scheme\", \"format\": \"select\"}}}, \"title\": \"学位授与機関識別子\", \"format\": \"array\"}}}, \"title\": \"Degree Grantor\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"item_1718082005802\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\", \"currentEnum\": []}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\", \"currentEnum\": []}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\", \"open_restricted\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_restricted\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\", \"currentEnum\": []}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"Restricted File\", \"maxItems\": \"9999\", \"minItems\": \"1\"}, \"system_identifier_doi\": {\"type\": \"object\", \"title\": \"Persistent Identifier(DOI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_hdl\": {\"type\": \"object\", \"title\": \"Persistent Identifier(HDL)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}, \"system_identifier_uri\": {\"type\": \"object\", \"title\": \"Persistent Identifier(URI)\", \"format\": \"object\", \"properties\": {\"subitem_systemidt_identifier\": {\"type\": \"string\", \"title\": \"SYSTEMIDT Identifier\", \"format\": \"text\"}, \"subitem_systemidt_identifier_type\": {\"enum\": [\"DOI\", \"HDL\", \"URI\"], \"type\": \"string\", \"title\": \"SYSTEMIDT Identifier Type\", \"format\": \"select\", \"currentEnum\": [\"DOI\", \"HDL\", \"URI\"]}}, \"system_prop\": true}}, \"description\": \"\"}, \"mapping\": {\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}}, \"item_1698591601\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"originalLanguage\": {\"@value\": \"original_language\", \"@attributes\": {\"xml:lang\": \"original_language_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"originalLanguage\": {\"@value\": \"original_language\", \"@attributes\": {\"xml:lang\": \"original_language_language\"}}}}, \"item_1698591602\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"volumeTitle\": {\"@value\": \"volume_title\", \"@attributes\": {\"xml:lang\": \"volume_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"volumeTitle\": {\"@value\": \"volume_title\", \"@attributes\": {\"xml:lang\": \"volume_title_language\"}}}}, \"item_1698591603\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"catalog\": {\"file\": {\"URI\": {\"@value\": \"catalog_file.catalog_file_uri\", \"@attributes\": {\"objectType\": \"catalog_file.catalog_file_object_type\"}}}, \"title\": {\"@value\": \"catalog_titles.catalog_title\", \"@attributes\": {\"xml:lang\": \"catalog_titles.catalog_title_language\"}}, \"rights\": {\"@value\": \"catalog_rights.catalog_rights_right\", \"@attributes\": {\"xml:lang\": \"catalog_rights.catalog_right_language\", \"rdf:resource\": \"catalog_rights.catalog_right_rdf_resource\"}}, \"license\": {\"@value\": \"catalog_licenses.catalog_license\", \"@attributes\": {\"xml:lang\": \"catalog_licenses.catalog_license_language\", \"licenseType\": \"catalog_licenses.catalog_license_type\", \"rdf:resource\": \"catalog_licenses.catalog_license_rdf_resource\"}}, \"subject\": {\"@value\": \"catalog_subjects.catalog_subject\", \"@attributes\": {\"xml:lang\": \"catalog_subjects.catalog_subject_language\", \"subjectURI\": \"catalog_subjects.catalog_subject_uri\", \"subjectScheme\": \"catalog_subjects.catalog_subject_scheme\"}}, \"identifier\": {\"@value\": \"catalog_identifiers.catalog_identifier\", \"@attributes\": {\"identifierType\": \"catalog_identifiers.catalog_identifier_type\"}}, \"contributor\": {\"@attributes\": {\"contributorType\": \"catalog_contributors.contributor_type\"}, \"contributorName\": {\"@value\": \"catalog_contributors.contributor_names.contributor_name\", \"@attributes\": {\"xml:lang\": \"catalog_contributors.contributor_names.contributor_name_language\"}}}, \"description\": {\"@value\": \"catalog_descriptions.catalog_description\", \"@attributes\": {\"xml:lang\": \"catalog_descriptions.catalog_description_language\", \"descriptionType\": \"catalog_descriptions.catalog_description_type\"}}, \"accessRights\": {\"@value\": \"catalog_access_rights.catalog_access_right\", \"@attributes\": {\"rdf:resource\": \"catalog_access_rights.catalog_access_right_rdf_resource\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"catalog\": {\"file\": {\"URI\": {\"@value\": \"catalog_file.catalog_file_uri\", \"@attributes\": {\"objectType\": \"catalog_file.catalog_file_object_type\"}}}, \"title\": {\"@value\": \"catalog_titles.catalog_title\", \"@attributes\": {\"xml:lang\": \"catalog_titles.catalog_title_language\"}}, \"rights\": {\"@value\": \"catalog_rights.catalog_rights_right\", \"@attributes\": {\"xml:lang\": \"catalog_rights.catalog_right_language\", \"rdf:resource\": \"catalog_rights.catalog_right_rdf_resource\"}}, \"license\": {\"@value\": \"catalog_licenses.catalog_license\", \"@attributes\": {\"xml:lang\": \"catalog_licenses.catalog_license_language\", \"licenseType\": \"catalog_licenses.catalog_license_type\", \"rdf:resource\": \"catalog_licenses.catalog_license_rdf_resource\"}}, \"subject\": {\"@value\": \"catalog_subjects.catalog_subject\", \"@attributes\": {\"xml:lang\": \"catalog_subjects.catalog_subject_language\", \"subjectURI\": \"catalog_subjects.catalog_subject_uri\", \"subjectScheme\": \"catalog_subjects.catalog_subject_scheme\"}}, \"identifier\": {\"@value\": \"catalog_identifiers.catalog_identifier\", \"@attributes\": {\"identifierType\": \"catalog_identifiers.catalog_identifier_type\"}}, \"contributor\": {\"@attributes\": {\"contributorType\": \"catalog_contributors.contributor_type\"}, \"contributorName\": {\"@value\": \"catalog_contributors.contributor_names.contributor_name\", \"@attributes\": {\"xml:lang\": \"catalog_contributors.contributor_names.contributor_name_language\"}}}, \"description\": {\"@value\": \"catalog_descriptions.catalog_description\", \"@attributes\": {\"xml:lang\": \"catalog_descriptions.catalog_description_language\", \"descriptionType\": \"catalog_descriptions.catalog_description_type\"}}, \"accessRights\": {\"@value\": \"catalog_access_rights.catalog_access_right\", \"@attributes\": {\"rdf:resource\": \"catalog_access_rights.catalog_access_right_rdf_resource\"}}}}}, \"item_1698591604\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"format\": {\"@value\": \"jpcoar_format\", \"@attributes\": {\"xml:lang\": \"jpcoar_format_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"format\": {\"@value\": \"jpcoar_format\", \"@attributes\": {\"xml:lang\": \"jpcoar_format_language\"}}}}, \"item_1698591605\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"datasetSeries\": {\"@value\": \"jpcoar_dataset_series\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"datasetSeries\": {\"@value\": \"jpcoar_dataset_series\"}}}, \"item_1698591606\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"edition\": {\"@value\": \"edition\", \"@attributes\": {\"xml:lang\": \"edition_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"edition\": {\"@value\": \"edition\", \"@attributes\": {\"xml:lang\": \"edition_language\"}}}}, \"item_1698591607\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"holdingAgent\": {\"holdingAgentName\": {\"@value\": \"holding_agent_names.holding_agent_name\", \"@attributes\": {\"xml:lang\": \"holding_agent_names.holding_agent_name_language\"}}, \"holdingAgentNameIdentifier\": {\"@value\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_value\", \"@attributes\": {\"nameIdentifierURI\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_uri\", \"nameIdentifierScheme\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_scheme\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"holdingAgent\": {\"holdingAgentName\": {\"@value\": \"holding_agent_names.holding_agent_name\", \"@attributes\": {\"xml:lang\": \"holding_agent_names.holding_agent_name_language\"}}, \"holdingAgentNameIdentifier\": {\"@value\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_value\", \"@attributes\": {\"nameIdentifierURI\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_uri\", \"nameIdentifierScheme\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_scheme\"}}}}}, \"item_1698591608\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date_dcterms\": {\"@value\": \"subitem_dcterms_date\", \"@attributes\": {\"xml:lang\": \"subitem_dcterms_date_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_dcterms_date\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date_dcterms\": {\"@value\": \"subitem_dcterms_date\", \"@attributes\": {\"xml:lang\": \"subitem_dcterms_date_language\"}}}}, \"item_1698591609\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"extent\": {\"@value\": \"dcterms_extent\", \"@attributes\": {\"xml:lang\": \"dcterms_extent_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"extent\": {\"@value\": \"dcterms_extent\", \"@attributes\": {\"xml:lang\": \"dcterms_extent_language\"}}}}, \"item_1698591610\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"publisher_jpcoar\": {\"location\": {\"@value\": \"publisher_locations.publisher_location\"}, \"publisherName\": {\"@value\": \"publisher_names.publisher_name\", \"@attributes\": {\"xml:lang\": \"publisher_names.publisher_name_language\"}}, \"publicationPlace\": {\"@value\": \"publication_places.publication_place\"}, \"publisherDescription\": {\"@value\": \"publisher_descriptions.publisher_description\", \"@attributes\": {\"xml:lang\": \"publisher_descriptions.publisher_description_language\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"publisher_jpcoar\": {\"location\": {\"@value\": \"publisher_locations.publisher_location\"}, \"publisherName\": {\"@value\": \"publisher_names.publisher_name\", \"@attributes\": {\"xml:lang\": \"publisher_names.publisher_name_language\"}}, \"publicationPlace\": {\"@value\": \"publication_places.publication_place\"}, \"publisherDescription\": {\"@value\": \"publisher_descriptions.publisher_description\", \"@attributes\": {\"xml:lang\": \"publisher_descriptions.publisher_description_language\"}}}}}, \"item_1617186331708\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_title\", \"@attributes\": {\"xml:lang\": \"subitem_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"title\": {\"@value\": \"subitem_title\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"title\": {\"@value\": \"subitem_title\", \"@attributes\": {\"xml:lang\": \"subitem_title_language\"}}}}, \"item_1617186385884\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_alternative_title\", \"@attributes\": {\"xml:lang\": \"subitem_alternative_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"title\": {\"@value\": \"subitem_alternative_title\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"alternative\": {\"@value\": \"subitem_alternative_title\", \"@attributes\": {\"xml:lang\": \"subitem_alternative_title_language\"}}}}, \"item_1617186419668\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierURI\", \"nameIdentifierScheme\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierScheme\"}}, \"affiliationName\": {\"@value\": \"creatorAffiliations.affiliationNames.affiliationName\", \"@attributes\": {\"xml:lang\": \"creatorAffiliations.affiliationNames.affiliationNameLang\"}}}, \"creatorName\": {\"@value\": \"creatorNames.creatorName\", \"@attributes\": {\"xml:lang\": \"creatorNames.creatorNameLang\"}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"creatorAlternative\": {\"@value\": \"creatorAlternatives.creatorAlternative\", \"@attributes\": {\"xml:lang\": \"creatorAlternatives.creatorAlternativeLang\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"creator\": {\"@value\": \"creatorNames.creatorName,nameIdentifiers.nameIdentifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"creator\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierURI\", \"nameIdentifierScheme\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierScheme\"}}, \"affiliationName\": {\"@value\": \"creatorAffiliations.affiliationNames.affiliationName\", \"@attributes\": {\"xml:lang\": \"creatorAffiliations.affiliationNames.affiliationNameLang\"}}}, \"creatorName\": {\"@value\": \"creatorNames.creatorName\", \"@attributes\": {\"xml:lang\": \"creatorNames.creatorNameLang\"}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"creatorAlternative\": {\"@value\": \"creatorAlternatives.creatorAlternative\", \"@attributes\": {\"xml:lang\": \"creatorAlternatives.creatorAlternativeLang\"}}}}}, \"item_1617186476635\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"accessRights\": {\"@value\": \"subitem_access_right\", \"@attributes\": {\"rdf:resource\": \"subitem_access_right_uri\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"rights\": {\"@value\": \"subitem_access_right\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"accessRights\": {\"@value\": \"subitem_access_right\", \"@attributes\": {\"rdf:resource\": \"subitem_access_right_uri\"}}}}, \"item_1617186499011\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"rights\": {\"@value\": \"subitem_rights\", \"@attributes\": {\"xml:lang\": \"subitem_rights_language\", \"rdf:resource\": \"subitem_rights_resource\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"rights\": {\"@value\": \"subitem_rights\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"rights\": {\"@value\": \"subitem_rights\", \"@attributes\": {\"xml:lang\": \"subitem_rights_language\", \"rdf:resource\": \"subitem_rights_resource\"}}}}, \"item_1617186609386\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"subject\": {\"@value\": \"subitem_subject\", \"@attributes\": {\"xml:lang\": \"subitem_subject_language\", \"subjectURI\": \"subitem_subject_uri\", \"subjectScheme\": \"subitem_subject_scheme\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"subject\": {\"@value\": \"subitem_subject\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"subject\": {\"@value\": \"subitem_subject\", \"@attributes\": {\"xml:lang\": \"subitem_subject_language\", \"subjectURI\": \"subitem_subject_uri\", \"subjectScheme\": \"subitem_subject_scheme\"}}}}, \"item_1617186626617\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"description\": {\"@value\": \"subitem_description\", \"@attributes\": {\"xml:lang\": \"subitem_description_language\", \"descriptionType\": \"subitem_description_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_description\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"description\": {\"@value\": \"subitem_description\", \"@attributes\": {\"xml:lang\": \"subitem_description_language\", \"descriptionType\": \"subitem_description_type\"}}}}, \"item_1617186643794\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\", \"@attributes\": {\"xml:lang\": \"subitem_publisher\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\", \"@attributes\": {\"xml:lang\": \"subitem_publisher\"}}}}, \"item_1617186660861\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\", \"@attributes\": {\"dateType\": \"subitem_date_issued_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\", \"@attributes\": {\"dateType\": \"subitem_date_issued_type\"}}}}, \"item_1617186702042\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}}, \"item_1617186783814\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\", \"@attributes\": {\"identifierType\": \"subitem_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\", \"@attributes\": {\"identifierType\": \"subitem_identifier_type\"}}}}, \"item_1617186819068\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifierRegistration\": {\"@value\": \"subitem_identifier_reg_text\", \"@attributes\": {\"identifierType\": \"subitem_identifier_reg_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifierRegistration\": {\"@value\": \"subitem_identifier_reg_text\", \"@attributes\": {\"identifierType\": \"subitem_identifier_reg_type\"}}}}, \"item_1617186859717\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"temporal\": {\"@value\": \"subitem_temporal_text\", \"@attributes\": {\"xml:lang\": \"subitem_temporal_languag\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"coverage\": {\"@value\": \"subitem_temporal_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"temporal\": {\"@value\": \"subitem_temporal_text\", \"@attributes\": {\"xml:lang\": \"subitem_temporal_languag\"}}}}, \"item_1617186882738\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"geoLocation\": {\"geoLocationBox\": {\"eastBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_east_longitude\"}, \"northBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_north_latitude\"}, \"southBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_south_latitude\"}, \"westBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_west_longitude\"}}, \"geoLocationPlace\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}, \"geoLocationPoint\": {\"pointLatitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_latitude\"}, \"pointLongitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_longitude\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"coverage\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"geoLocation\": {\"geoLocationBox\": {\"eastBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_east_longitude\"}, \"northBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_north_latitude\"}, \"southBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_south_latitude\"}, \"westBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_west_longitude\"}}, \"geoLocationPlace\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}, \"geoLocationPoint\": {\"pointLatitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_latitude\"}, \"pointLongitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_longitude\"}}}}}, \"item_1617186901218\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"fundingReference\": {\"awardTitle\": {\"@value\": \"subitem_award_titles.subitem_award_title\", \"@attributes\": {\"xml:lang\": \"subitem_award_titles.subitem_award_title_language\"}}, \"funderName\": {\"@value\": \"subitem_funder_names.subitem_funder_name\", \"@attributes\": {\"xml:lang\": \"subitem_funder_names.subitem_funder_name_language\"}}, \"awardNumber\": {\"@value\": \"subitem_award_numbers.subitem_award_number\", \"@attributes\": {\"awardURI\": \"subitem_award_numbers.subitem_1522399585738\"}}, \"funderIdentifier\": {\"@value\": \"subitem_funder_identifiers.subitem_funder_identifier\", \"@attributes\": {\"funderIdentifierType\": \"subitem_funder_identifiers.subitem_funder_identifier_type\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"fundingReference\": {\"awardTitle\": {\"@value\": \"subitem_award_titles.subitem_award_title\", \"@attributes\": {\"xml:lang\": \"subitem_award_titles.subitem_award_title_language\"}}, \"funderName\": {\"@value\": \"subitem_funder_names.subitem_funder_name\", \"@attributes\": {\"xml:lang\": \"subitem_funder_names.subitem_funder_name_language\"}}, \"awardNumber\": {\"@value\": \"subitem_award_numbers.subitem_award_number\", \"@attributes\": {\"awardURI\": \"subitem_award_numbers.subitem_1522399585738\"}}, \"funderIdentifier\": {\"@value\": \"subitem_funder_identifiers.subitem_funder_identifier\", \"@attributes\": {\"funderIdentifierType\": \"subitem_funder_identifiers.subitem_funder_identifier_type\"}}}}}, \"item_1617186920753\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"sourceIdentifier\": {\"@value\": \"subitem_source_identifier\", \"@attributes\": {\"identifierType\": \"subitem_source_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_source_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"sourceIdentifier\": {\"@value\": \"subitem_source_identifier\", \"@attributes\": {\"identifierType\": \"subitem_source_identifier_type\"}}}}, \"item_1617186941041\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"sourceTitle\": {\"@value\": \"subitem_record_name\", \"@attributes\": {\"xml:lang\": \"subitem_record_name_languag\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_record_name\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"sourceTitle\": {\"@value\": \"subitem_record_name\", \"@attributes\": {\"xml:lang\": \"subitem_record_name_languag\"}}}}, \"item_1617186959569\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"volume\": {\"@value\": \"subitem_volume\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_volume\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"volume\": {\"@value\": \"subitem_volume\"}}}, \"item_1617186981471\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"issue\": {\"@value\": \"subitem_issue\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_issue\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"issue\": {\"@value\": \"subitem_issue\"}}}, \"item_1617186994930\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"numPages\": {\"@value\": \"subitem_number_of_pages\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_number_of_pages\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"numPages\": {\"@value\": \"subitem_number_of_pages\"}}}, \"item_1617187024783\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"pageStart\": {\"@value\": \"subitem_start_page\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_start_page\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"pageStart\": {\"@value\": \"subitem_start_page\"}}}, \"item_1617187045071\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"pageEnd\": {\"@value\": \"subitem_end_page\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_end_page\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"pageEnd\": {\"@value\": \"subitem_end_page\"}}}, \"item_1617187056579\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\", \"@attributes\": {\"dateType\": \"bibliographicIssueDates.bibliographicIssueDateType\"}}, \"issue\": {\"@value\": \"bibliographicIssueNumber\"}, \"volume\": {\"@value\": \"bibliographicVolumeNumber\"}, \"pageEnd\": {\"@value\": \"bibliographicPageEnd\"}, \"numPages\": {\"@value\": \"bibliographicNumberOfPages\"}, \"pageStart\": {\"@value\": \"bibliographicPageStart\"}, \"sourceTitle\": {\"@value\": \"bibliographic_titles.bibliographic_title\", \"@attributes\": {\"xml:lang\": \"bibliographic_titles.bibliographic_titleLang\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\"}, \"identifier\": {\"@value\": \"bibliographic_titles.bibliographic_title,bibliographicIssueNumber,bibliographicVolumeNumber,bibliographicPageEnd,bibliographicPageStart\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\", \"@attributes\": {\"dateType\": \"bibliographicIssueDates.bibliographicIssueDateType\"}}, \"issue\": {\"@value\": \"bibliographicIssueNumber\"}, \"volume\": {\"@value\": \"bibliographicVolumeNumber\"}, \"pageEnd\": {\"@value\": \"bibliographicPageEnd\"}, \"numPages\": {\"@value\": \"bibliographicNumberOfPages\"}, \"pageStart\": {\"@value\": \"bibliographicPageStart\"}, \"sourceTitle\": {\"@value\": \"bibliographic_titles.bibliographic_title\", \"@attributes\": {\"xml:lang\": \"bibliographic_titles.bibliographic_titleLang\"}}}}, \"item_1617187087799\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"dissertationNumber\": {\"@value\": \"subitem_dissertationnumber\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_dissertationnumber\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"dissertationNumber\": {\"@value\": \"subitem_dissertationnumber\"}}}, \"item_1617187112279\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"degreeName\": {\"@value\": \"subitem_degreename\", \"@attributes\": {\"xml:lang\": \"subitem_degreename_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_degreename\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"degreeName\": {\"@value\": \"subitem_degreename\", \"@attributes\": {\"xml:lang\": \"subitem_degreename_language\"}}}}, \"item_1617187136212\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"dateGranted\": {\"@value\": \"subitem_dategranted\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_dategranted\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"dateGranted\": {\"@value\": \"subitem_dategranted\"}}}, \"item_1617187187528\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"conference\": {\"conferenceDate\": {\"@value\": \"subitem_conference_date.subitem_conference_period\", \"@attributes\": {\"endDay\": \"subitem_conference_date.subitem_conference_end_day\", \"endYear\": \"subitem_conference_date.subitem_conference_end_year\", \"endMonth\": \"subitem_conference_date.subitem_conference_end_month\", \"startDay\": \"subitem_conference_date.subitem_conference_start_day\", \"xml:lang\": \"subitem_conference_date.subitem_conference_date_language\", \"startYear\": \"subitem_conference_date.subitem_conference_start_year\", \"startMonth\": \"subitem_conference_date.subitem_conference_start_month\"}}, \"conferenceName\": {\"@value\": \"subitem_conference_names.subitem_conference_name\", \"@attributes\": {\"xml:lang\": \"subitem_conference_names.subitem_conference_name_language\"}}, \"conferenceVenue\": {\"@value\": \"subitem_conference_venues.subitem_conference_venue\", \"@attributes\": {\"xml:lang\": \"subitem_conference_venues.subitem_conference_venue_language\"}}, \"conferenceCountry\": {\"@value\": \"subitem_conference_country\"}, \"conferenceSponsor\": {\"@value\": \"subitem_conference_sponsors.subitem_conference_sponsor\", \"@attributes\": {\"xml:lang\": \"subitem_conference_sponsors.subitem_conference_sponsor_language\"}}, \"conferenceSequence\": {\"@value\": \"subitem_conference_sequence\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"conference\": {\"conferenceDate\": {\"@value\": \"subitem_conference_date.subitem_conference_period\", \"@attributes\": {\"endDay\": \"subitem_conference_date.subitem_conference_end_day\", \"endYear\": \"subitem_conference_date.subitem_conference_end_year\", \"endMonth\": \"subitem_conference_date.subitem_conference_end_month\", \"startDay\": \"subitem_conference_date.subitem_conference_start_day\", \"xml:lang\": \"subitem_conference_date.subitem_conference_date_language\", \"startYear\": \"subitem_conference_date.subitem_conference_start_year\", \"startMonth\": \"subitem_conference_date.subitem_conference_start_month\"}}, \"conferenceName\": {\"@value\": \"subitem_conference_names.subitem_conference_name\", \"@attributes\": {\"xml:lang\": \"subitem_conference_names.subitem_conference_name_language\"}}, \"conferenceVenue\": {\"@value\": \"subitem_conference_venues.subitem_conference_venue\", \"@attributes\": {\"xml:lang\": \"subitem_conference_venues.subitem_conference_venue_language\"}}, \"conferenceCountry\": {\"@value\": \"subitem_conference_country\"}, \"conferenceSponsor\": {\"@value\": \"subitem_conference_sponsors.subitem_conference_sponsor\", \"@attributes\": {\"xml:lang\": \"subitem_conference_sponsors.subitem_conference_sponsor_language\"}}, \"conferenceSequence\": {\"@value\": \"subitem_conference_sequence\"}}}}, \"item_1617258105262\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"type\": {\"@value\": \"resourcetype\", \"@attributes\": {\"rdf:resource\": \"resourceuri\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"resourceuri\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"type\": {\"@value\": \"resourcetype\", \"@attributes\": {\"rdf:resource\": \"resourceuri\"}}}}, \"item_1617265215918\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"versiontype\": {\"@value\": \"subitem_version_type\", \"@attributes\": {\"rdf:resource\": \"subitem_version_resource\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"type\": {\"@value\": \"subitem_version_type\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"versiontype\": {\"@value\": \"subitem_version_type\", \"@attributes\": {\"rdf:resource\": \"subitem_version_resource\"}}}}, \"item_1617349709064\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"contributor\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"@attributes\": {\"contributorType\": \"contributorType\"}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationURI\", \"nameIdentifierScheme\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationScheme\"}}, \"affiliationName\": {\"@value\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationName\", \"@attributes\": {\"xml:lang\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationNameLang\"}}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"contributorName\": {\"@value\": \"contributorNames.contributorName\", \"@attributes\": {\"xml:lang\": \"contributorNames.lang\"}}, \"contributorAlternative\": {\"@value\": \"contributorAlternatives.contributorAlternative\", \"@attributes\": {\"xml:lang\": \"contributorAlternatives.contributorAlternativeLang\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"contributor\": {\"@value\": \"contributorNames.contributorName,nameIdentifiers.nameIdentifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"contributor\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"@attributes\": {\"contributorType\": \"contributorType\"}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationURI\", \"nameIdentifierScheme\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationScheme\"}}, \"affiliationName\": {\"@value\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationName\", \"@attributes\": {\"xml:lang\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationNameLang\"}}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"contributorName\": {\"@value\": \"contributorNames.contributorName\", \"@attributes\": {\"xml:lang\": \"contributorNames.lang\"}}, \"contributorAlternative\": {\"@value\": \"contributorAlternatives.contributorAlternative\", \"@attributes\": {\"xml:lang\": \"contributorAlternatives.contributorAlternativeLang\"}}}}}, \"item_1617349808926\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"version\": {\"@value\": \"subitem_version\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"version\": {\"@value\": \"subitem_version\"}}}, \"item_1617351524846\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"apc\": {\"@value\": \"subitem_apc\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"apc\": {\"@value\": \"subitem_apc\"}}}, \"item_1617353299429\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"relation\": {\"@attributes\": {\"relationType\": \"subitem_relation_type\"}, \"relatedTitle\": {\"@value\": \"subitem_relation_name.subitem_relation_name_text\", \"@attributes\": {\"xml:lang\": \"subitem_relation_name.subitem_relation_name_language\"}}, \"relatedIdentifier\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text\", \"@attributes\": {\"identifierType\": \"subitem_relation_type_id.subitem_relation_type_select\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"relation\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text,subitem_relation_name.subitem_relation_name_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"relation\": {\"@attributes\": {\"relationType\": \"subitem_relation_type\"}, \"relatedTitle\": {\"@value\": \"subitem_relation_name.subitem_relation_name_text\", \"@attributes\": {\"xml:lang\": \"subitem_relation_name.subitem_relation_name_language\"}}, \"relatedIdentifier\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text\", \"@attributes\": {\"identifierType\": \"subitem_relation_type_id.subitem_relation_type_select\"}}}}}, \"item_1617610673286\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"rightsHolder\": {\"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"rightsHolderName\": {\"@value\": \"rightHolderNames.rightHolderName\", \"@attributes\": {\"xml:lang\": \"rightHolderNames.rightHolderLanguage\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"rightsHolder\": {\"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"rightsHolderName\": {\"@value\": \"rightHolderNames.rightHolderName\", \"@attributes\": {\"xml:lang\": \"rightHolderNames.rightHolderLanguage\"}}}}}, \"item_1617620223087\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"item_1617944105607\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"degreeGrantor\": {\"nameIdentifier\": {\"@value\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_name\", \"@attributes\": {\"nameIdentifierScheme\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_scheme\"}}, \"degreeGrantorName\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\", \"@attributes\": {\"xml:lang\": \"subitem_degreegrantor.subitem_degreegrantor_language\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"degreeGrantor\": {\"nameIdentifier\": {\"@value\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_name\", \"@attributes\": {\"nameIdentifierScheme\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_scheme\"}}, \"degreeGrantorName\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\", \"@attributes\": {\"xml:lang\": \"subitem_degreegrantor.subitem_degreegrantor_language\"}}}}}, \"item_1718082005802\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"file\": {\"URI\": {\"@value\": \"url.url\", \"@attributes\": {\"label\": \"url.label\", \"objectType\": \"url.objectType\"}}, \"date\": {\"@value\": \"fileDate.fileDateValue\", \"@attributes\": {\"dateType\": \"fileDate.fileDateType\"}}, \"extent\": {\"@value\": \"filesize.value\"}, \"version\": {\"@value\": \"version\"}, \"mimeType\": {\"@value\": \"format\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"system_identifier_doi\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}, \"system_identifier_hdl\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}, \"system_identifier_uri\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}}}}", + "tag": 1, + "version_id": 3, + "is_deleted": false + } + ], + "item_type_mapping": [ + { + "id": 31001, + "item_type_id": 31001, + "mapping": "{\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221831877\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_restricted_access_dataset_usage\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221851421\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"affiliation\": {\"affiliationName\": {\"@value\": \"subitem_university/institution\"}}, \"creatorName\": {\"@value\": \"subitem_fullname\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221894659\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221921931\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221941275\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221960771\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"description\": {\"@value\": \"subitem_restricted_access_research_plan\", \"@attributes\": {\"descriptionType\": \"subitem_restricted_access_research_plan_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221987611\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222047122\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_wf_issued_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_wf_issued_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222067301\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_application_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_application_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222093486\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_approval_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_approval_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222117209\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_restricted_access_item_title\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_doi\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_hdl\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_uri\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}}", + "version_id": 1 + }, + { + "id": 31002, + "item_type_id": 31002, + "mapping": "{\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221831877\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_restricted_access_dataset_usage\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221851421\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"affiliation\": {\"affiliationName\": {\"@value\": \"subitem_university/institution\"}}, \"creatorName\": {\"@value\": \"subitem_fullname\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221894659\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221902404\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221921931\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221941275\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221960771\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"description\": {\"@value\": \"subitem_restricted_access_research_plan\", \"@attributes\": {\"descriptionType\": \"subitem_restricted_access_research_plan_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221987611\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222047122\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_wf_issued_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_wf_issued_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222067301\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_application_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_application_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222093486\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_approval_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_approval_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222117209\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_restricted_access_item_title\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_doi\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_hdl\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_uri\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}}", + "version_id": 1 + }, + { + "id": 31003, + "item_type_id": 31003, + "mapping": "{\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221831877\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_restricted_access_dataset_usage\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221851421\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"affiliation\": {\"affiliationName\": {\"@value\": \"subitem_university/institution\"}}, \"creatorName\": {\"@value\": \"subitem_fullname\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221921931\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616221960771\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222027961\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222047122\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_wf_issued_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_wf_issued_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222067301\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_application_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_application_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222093486\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_restricted_access_approval_date\", \"@attributes\": {\"dateType\": \"subitem_restricted_access_approval_date_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"item_1616222117209\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_restricted_access_item_title\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_doi\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_hdl\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}, \"system_identifier_uri\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\"}}", + "version_id": 1 + }, + { + "id": 31004, + "item_type_id": 31004, + "mapping": "{\"pubdate\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"system_file\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"system_file\": {\"URI\": {\"@value\": \"subitem_systemfile_filename_uri\", \"@attributes\": {\"label\": \"subitem_systemfile_filename_label\", \"objectType\": \"subitem_systemfile_filename_type\"}}, \"date\": {\"@value\": \"subitem_systemfile_datetime_date\", \"@attributes\": {\"dateType\": \"subitem_systemfile_datetime_type\"}}, \"extent\": {\"@value\": \"subitem_systemfile_size\"}, \"version\": {\"@value\": \"subitem_systemfile_version\"}, \"mimeType\": {\"@value\": \"subitem_systemfile_mimetype\"}}}}, \"item_1698591601\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"originalLanguage\": {\"@value\": \"original_language\", \"@attributes\": {\"xml:lang\": \"original_language_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"originalLanguage\": {\"@value\": \"original_language\", \"@attributes\": {\"xml:lang\": \"original_language_language\"}}}}, \"item_1698591602\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"volumeTitle\": {\"@value\": \"volume_title\", \"@attributes\": {\"xml:lang\": \"volume_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"volumeTitle\": {\"@value\": \"volume_title\", \"@attributes\": {\"xml:lang\": \"volume_title_language\"}}}}, \"item_1698591603\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"catalog\": {\"file\": {\"URI\": {\"@value\": \"catalog_file.catalog_file_uri\", \"@attributes\": {\"objectType\": \"catalog_file.catalog_file_object_type\"}}}, \"title\": {\"@value\": \"catalog_titles.catalog_title\", \"@attributes\": {\"xml:lang\": \"catalog_titles.catalog_title_language\"}}, \"rights\": {\"@value\": \"catalog_rights.catalog_rights_right\", \"@attributes\": {\"xml:lang\": \"catalog_rights.catalog_right_language\", \"rdf:resource\": \"catalog_rights.catalog_right_rdf_resource\"}}, \"license\": {\"@value\": \"catalog_licenses.catalog_license\", \"@attributes\": {\"xml:lang\": \"catalog_licenses.catalog_license_language\", \"licenseType\": \"catalog_licenses.catalog_license_type\", \"rdf:resource\": \"catalog_licenses.catalog_license_rdf_resource\"}}, \"subject\": {\"@value\": \"catalog_subjects.catalog_subject\", \"@attributes\": {\"xml:lang\": \"catalog_subjects.catalog_subject_language\", \"subjectURI\": \"catalog_subjects.catalog_subject_uri\", \"subjectScheme\": \"catalog_subjects.catalog_subject_scheme\"}}, \"identifier\": {\"@value\": \"catalog_identifiers.catalog_identifier\", \"@attributes\": {\"identifierType\": \"catalog_identifiers.catalog_identifier_type\"}}, \"contributor\": {\"@attributes\": {\"contributorType\": \"catalog_contributors.contributor_type\"}, \"contributorName\": {\"@value\": \"catalog_contributors.contributor_names.contributor_name\", \"@attributes\": {\"xml:lang\": \"catalog_contributors.contributor_names.contributor_name_language\"}}}, \"description\": {\"@value\": \"catalog_descriptions.catalog_description\", \"@attributes\": {\"xml:lang\": \"catalog_descriptions.catalog_description_language\", \"descriptionType\": \"catalog_descriptions.catalog_description_type\"}}, \"accessRights\": {\"@value\": \"catalog_access_rights.catalog_access_right\", \"@attributes\": {\"rdf:resource\": \"catalog_access_rights.catalog_access_right_rdf_resource\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"catalog\": {\"file\": {\"URI\": {\"@value\": \"catalog_file.catalog_file_uri\", \"@attributes\": {\"objectType\": \"catalog_file.catalog_file_object_type\"}}}, \"title\": {\"@value\": \"catalog_titles.catalog_title\", \"@attributes\": {\"xml:lang\": \"catalog_titles.catalog_title_language\"}}, \"rights\": {\"@value\": \"catalog_rights.catalog_rights_right\", \"@attributes\": {\"xml:lang\": \"catalog_rights.catalog_right_language\", \"rdf:resource\": \"catalog_rights.catalog_right_rdf_resource\"}}, \"license\": {\"@value\": \"catalog_licenses.catalog_license\", \"@attributes\": {\"xml:lang\": \"catalog_licenses.catalog_license_language\", \"licenseType\": \"catalog_licenses.catalog_license_type\", \"rdf:resource\": \"catalog_licenses.catalog_license_rdf_resource\"}}, \"subject\": {\"@value\": \"catalog_subjects.catalog_subject\", \"@attributes\": {\"xml:lang\": \"catalog_subjects.catalog_subject_language\", \"subjectURI\": \"catalog_subjects.catalog_subject_uri\", \"subjectScheme\": \"catalog_subjects.catalog_subject_scheme\"}}, \"identifier\": {\"@value\": \"catalog_identifiers.catalog_identifier\", \"@attributes\": {\"identifierType\": \"catalog_identifiers.catalog_identifier_type\"}}, \"contributor\": {\"@attributes\": {\"contributorType\": \"catalog_contributors.contributor_type\"}, \"contributorName\": {\"@value\": \"catalog_contributors.contributor_names.contributor_name\", \"@attributes\": {\"xml:lang\": \"catalog_contributors.contributor_names.contributor_name_language\"}}}, \"description\": {\"@value\": \"catalog_descriptions.catalog_description\", \"@attributes\": {\"xml:lang\": \"catalog_descriptions.catalog_description_language\", \"descriptionType\": \"catalog_descriptions.catalog_description_type\"}}, \"accessRights\": {\"@value\": \"catalog_access_rights.catalog_access_right\", \"@attributes\": {\"rdf:resource\": \"catalog_access_rights.catalog_access_right_rdf_resource\"}}}}}, \"item_1698591604\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"format\": {\"@value\": \"jpcoar_format\", \"@attributes\": {\"xml:lang\": \"jpcoar_format_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"format\": {\"@value\": \"jpcoar_format\", \"@attributes\": {\"xml:lang\": \"jpcoar_format_language\"}}}}, \"item_1698591605\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"datasetSeries\": {\"@value\": \"jpcoar_dataset_series\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"datasetSeries\": {\"@value\": \"jpcoar_dataset_series\"}}}, \"item_1698591606\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"edition\": {\"@value\": \"edition\", \"@attributes\": {\"xml:lang\": \"edition_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"edition\": {\"@value\": \"edition\", \"@attributes\": {\"xml:lang\": \"edition_language\"}}}}, \"item_1698591607\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"holdingAgent\": {\"holdingAgentName\": {\"@value\": \"holding_agent_names.holding_agent_name\", \"@attributes\": {\"xml:lang\": \"holding_agent_names.holding_agent_name_language\"}}, \"holdingAgentNameIdentifier\": {\"@value\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_value\", \"@attributes\": {\"nameIdentifierURI\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_uri\", \"nameIdentifierScheme\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_scheme\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"holdingAgent\": {\"holdingAgentName\": {\"@value\": \"holding_agent_names.holding_agent_name\", \"@attributes\": {\"xml:lang\": \"holding_agent_names.holding_agent_name_language\"}}, \"holdingAgentNameIdentifier\": {\"@value\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_value\", \"@attributes\": {\"nameIdentifierURI\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_uri\", \"nameIdentifierScheme\": \"holding_agent_name_identifier.holding_agent_name_idenfitier_scheme\"}}}}}, \"item_1698591608\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date_dcterms\": {\"@value\": \"subitem_dcterms_date\", \"@attributes\": {\"xml:lang\": \"subitem_dcterms_date_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_dcterms_date\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date_dcterms\": {\"@value\": \"subitem_dcterms_date\", \"@attributes\": {\"xml:lang\": \"subitem_dcterms_date_language\"}}}}, \"item_1698591609\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"extent\": {\"@value\": \"dcterms_extent\", \"@attributes\": {\"xml:lang\": \"dcterms_extent_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"extent\": {\"@value\": \"dcterms_extent\", \"@attributes\": {\"xml:lang\": \"dcterms_extent_language\"}}}}, \"item_1698591610\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"publisher_jpcoar\": {\"location\": {\"@value\": \"publisher_locations.publisher_location\"}, \"publisherName\": {\"@value\": \"publisher_names.publisher_name\", \"@attributes\": {\"xml:lang\": \"publisher_names.publisher_name_language\"}}, \"publicationPlace\": {\"@value\": \"publication_places.publication_place\"}, \"publisherDescription\": {\"@value\": \"publisher_descriptions.publisher_description\", \"@attributes\": {\"xml:lang\": \"publisher_descriptions.publisher_description_language\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"publisher_jpcoar\": {\"location\": {\"@value\": \"publisher_locations.publisher_location\"}, \"publisherName\": {\"@value\": \"publisher_names.publisher_name\", \"@attributes\": {\"xml:lang\": \"publisher_names.publisher_name_language\"}}, \"publicationPlace\": {\"@value\": \"publication_places.publication_place\"}, \"publisherDescription\": {\"@value\": \"publisher_descriptions.publisher_description\", \"@attributes\": {\"xml:lang\": \"publisher_descriptions.publisher_description_language\"}}}}}, \"item_1617186331708\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"title\": {\"@value\": \"subitem_title\", \"@attributes\": {\"xml:lang\": \"subitem_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"title\": {\"@value\": \"subitem_title\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"title\": {\"@value\": \"subitem_title\", \"@attributes\": {\"xml:lang\": \"subitem_title_language\"}}}}, \"item_1617186385884\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"alternative\": {\"@value\": \"subitem_alternative_title\", \"@attributes\": {\"xml:lang\": \"subitem_alternative_title_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"title\": {\"@value\": \"subitem_alternative_title\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"alternative\": {\"@value\": \"subitem_alternative_title\", \"@attributes\": {\"xml:lang\": \"subitem_alternative_title_language\"}}}}, \"item_1617186419668\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"creator\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierURI\", \"nameIdentifierScheme\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierScheme\"}}, \"affiliationName\": {\"@value\": \"creatorAffiliations.affiliationNames.affiliationName\", \"@attributes\": {\"xml:lang\": \"creatorAffiliations.affiliationNames.affiliationNameLang\"}}}, \"creatorName\": {\"@value\": \"creatorNames.creatorName\", \"@attributes\": {\"xml:lang\": \"creatorNames.creatorNameLang\"}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"creatorAlternative\": {\"@value\": \"creatorAlternatives.creatorAlternative\", \"@attributes\": {\"xml:lang\": \"creatorAlternatives.creatorAlternativeLang\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"creator\": {\"@value\": \"creatorNames.creatorName,nameIdentifiers.nameIdentifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"creator\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierURI\", \"nameIdentifierScheme\": \"creatorAffiliations.affiliationNameIdentifiers.affiliationNameIdentifierScheme\"}}, \"affiliationName\": {\"@value\": \"creatorAffiliations.affiliationNames.affiliationName\", \"@attributes\": {\"xml:lang\": \"creatorAffiliations.affiliationNames.affiliationNameLang\"}}}, \"creatorName\": {\"@value\": \"creatorNames.creatorName\", \"@attributes\": {\"xml:lang\": \"creatorNames.creatorNameLang\"}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"creatorAlternative\": {\"@value\": \"creatorAlternatives.creatorAlternative\", \"@attributes\": {\"xml:lang\": \"creatorAlternatives.creatorAlternativeLang\"}}}}}, \"item_1617186476635\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"accessRights\": {\"@value\": \"subitem_access_right\", \"@attributes\": {\"rdf:resource\": \"subitem_access_right_uri\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"rights\": {\"@value\": \"subitem_access_right\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"accessRights\": {\"@value\": \"subitem_access_right\", \"@attributes\": {\"rdf:resource\": \"subitem_access_right_uri\"}}}}, \"item_1617186499011\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"rights\": {\"@value\": \"subitem_rights\", \"@attributes\": {\"xml:lang\": \"subitem_rights_language\", \"rdf:resource\": \"subitem_rights_resource\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"rights\": {\"@value\": \"subitem_rights\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"rights\": {\"@value\": \"subitem_rights\", \"@attributes\": {\"xml:lang\": \"subitem_rights_language\", \"rdf:resource\": \"subitem_rights_resource\"}}}}, \"item_1617186609386\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"subject\": {\"@value\": \"subitem_subject\", \"@attributes\": {\"xml:lang\": \"subitem_subject_language\", \"subjectURI\": \"subitem_subject_uri\", \"subjectScheme\": \"subitem_subject_scheme\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"subject\": {\"@value\": \"subitem_subject\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"subject\": {\"@value\": \"subitem_subject\", \"@attributes\": {\"xml:lang\": \"subitem_subject_language\", \"subjectURI\": \"subitem_subject_uri\", \"subjectScheme\": \"subitem_subject_scheme\"}}}}, \"item_1617186626617\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"description\": {\"@value\": \"subitem_description\", \"@attributes\": {\"xml:lang\": \"subitem_description_language\", \"descriptionType\": \"subitem_description_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_description\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"description\": {\"@value\": \"subitem_description\", \"@attributes\": {\"xml:lang\": \"subitem_description_language\", \"descriptionType\": \"subitem_description_type\"}}}}, \"item_1617186643794\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\", \"@attributes\": {\"xml:lang\": \"subitem_publisher\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"publisher\": {\"@value\": \"subitem_publisher_languag\", \"@attributes\": {\"xml:lang\": \"subitem_publisher\"}}}}, \"item_1617186660861\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\", \"@attributes\": {\"dateType\": \"subitem_date_issued_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date\": {\"@value\": \"subitem_date_issued_datetime\", \"@attributes\": {\"dateType\": \"subitem_date_issued_type\"}}}}, \"item_1617186702042\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"language\": {\"@value\": \"subitem_language\"}}}, \"item_1617186783814\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\", \"@attributes\": {\"identifierType\": \"subitem_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_identifier_uri\", \"@attributes\": {\"identifierType\": \"subitem_identifier_type\"}}}}, \"item_1617186819068\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifierRegistration\": {\"@value\": \"subitem_identifier_reg_text\", \"@attributes\": {\"identifierType\": \"subitem_identifier_reg_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifierRegistration\": {\"@value\": \"subitem_identifier_reg_text\", \"@attributes\": {\"identifierType\": \"subitem_identifier_reg_type\"}}}}, \"item_1617186859717\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"temporal\": {\"@value\": \"subitem_temporal_text\", \"@attributes\": {\"xml:lang\": \"subitem_temporal_languag\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"coverage\": {\"@value\": \"subitem_temporal_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"temporal\": {\"@value\": \"subitem_temporal_text\", \"@attributes\": {\"xml:lang\": \"subitem_temporal_languag\"}}}}, \"item_1617186882738\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"geoLocation\": {\"geoLocationBox\": {\"eastBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_east_longitude\"}, \"northBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_north_latitude\"}, \"southBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_south_latitude\"}, \"westBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_west_longitude\"}}, \"geoLocationPlace\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}, \"geoLocationPoint\": {\"pointLatitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_latitude\"}, \"pointLongitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_longitude\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"coverage\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"geoLocation\": {\"geoLocationBox\": {\"eastBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_east_longitude\"}, \"northBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_north_latitude\"}, \"southBoundLatitude\": {\"@value\": \"subitem_geolocation_box.subitem_south_latitude\"}, \"westBoundLongitude\": {\"@value\": \"subitem_geolocation_box.subitem_west_longitude\"}}, \"geoLocationPlace\": {\"@value\": \"subitem_geolocation_place.subitem_geolocation_place_text\"}, \"geoLocationPoint\": {\"pointLatitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_latitude\"}, \"pointLongitude\": {\"@value\": \"subitem_geolocation_point.subitem_point_longitude\"}}}}}, \"item_1617186901218\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"fundingReference\": {\"awardTitle\": {\"@value\": \"subitem_award_titles.subitem_award_title\", \"@attributes\": {\"xml:lang\": \"subitem_award_titles.subitem_award_title_language\"}}, \"funderName\": {\"@value\": \"subitem_funder_names.subitem_funder_name\", \"@attributes\": {\"xml:lang\": \"subitem_funder_names.subitem_funder_name_language\"}}, \"awardNumber\": {\"@value\": \"subitem_award_numbers.subitem_award_number\", \"@attributes\": {\"awardURI\": \"subitem_award_numbers.subitem_1522399585738\"}}, \"funderIdentifier\": {\"@value\": \"subitem_funder_identifiers.subitem_funder_identifier\", \"@attributes\": {\"funderIdentifierType\": \"subitem_funder_identifiers.subitem_funder_identifier_type\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"fundingReference\": {\"awardTitle\": {\"@value\": \"subitem_award_titles.subitem_award_title\", \"@attributes\": {\"xml:lang\": \"subitem_award_titles.subitem_award_title_language\"}}, \"funderName\": {\"@value\": \"subitem_funder_names.subitem_funder_name\", \"@attributes\": {\"xml:lang\": \"subitem_funder_names.subitem_funder_name_language\"}}, \"awardNumber\": {\"@value\": \"subitem_award_numbers.subitem_award_number\", \"@attributes\": {\"awardURI\": \"subitem_award_numbers.subitem_1522399585738\"}}, \"funderIdentifier\": {\"@value\": \"subitem_funder_identifiers.subitem_funder_identifier\", \"@attributes\": {\"funderIdentifierType\": \"subitem_funder_identifiers.subitem_funder_identifier_type\"}}}}}, \"item_1617186920753\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"sourceIdentifier\": {\"@value\": \"subitem_source_identifier\", \"@attributes\": {\"identifierType\": \"subitem_source_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_source_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"sourceIdentifier\": {\"@value\": \"subitem_source_identifier\", \"@attributes\": {\"identifierType\": \"subitem_source_identifier_type\"}}}}, \"item_1617186941041\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"sourceTitle\": {\"@value\": \"subitem_record_name\", \"@attributes\": {\"xml:lang\": \"subitem_record_name_languag\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_record_name\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"sourceTitle\": {\"@value\": \"subitem_record_name\", \"@attributes\": {\"xml:lang\": \"subitem_record_name_languag\"}}}}, \"item_1617186959569\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"volume\": {\"@value\": \"subitem_volume\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_volume\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"volume\": {\"@value\": \"subitem_volume\"}}}, \"item_1617186981471\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"issue\": {\"@value\": \"subitem_issue\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_issue\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"issue\": {\"@value\": \"subitem_issue\"}}}, \"item_1617186994930\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"numPages\": {\"@value\": \"subitem_number_of_pages\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_number_of_pages\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"numPages\": {\"@value\": \"subitem_number_of_pages\"}}}, \"item_1617187024783\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"pageStart\": {\"@value\": \"subitem_start_page\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_start_page\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"pageStart\": {\"@value\": \"subitem_start_page\"}}}, \"item_1617187045071\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"pageEnd\": {\"@value\": \"subitem_end_page\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_end_page\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"pageEnd\": {\"@value\": \"subitem_end_page\"}}}, \"item_1617187056579\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\", \"@attributes\": {\"dateType\": \"bibliographicIssueDates.bibliographicIssueDateType\"}}, \"issue\": {\"@value\": \"bibliographicIssueNumber\"}, \"volume\": {\"@value\": \"bibliographicVolumeNumber\"}, \"pageEnd\": {\"@value\": \"bibliographicPageEnd\"}, \"numPages\": {\"@value\": \"bibliographicNumberOfPages\"}, \"pageStart\": {\"@value\": \"bibliographicPageStart\"}, \"sourceTitle\": {\"@value\": \"bibliographic_titles.bibliographic_title\", \"@attributes\": {\"xml:lang\": \"bibliographic_titles.bibliographic_titleLang\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\"}, \"identifier\": {\"@value\": \"bibliographic_titles.bibliographic_title,bibliographicIssueNumber,bibliographicVolumeNumber,bibliographicPageEnd,bibliographicPageStart\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"date\": {\"@value\": \"bibliographicIssueDates.bibliographicIssueDate\", \"@attributes\": {\"dateType\": \"bibliographicIssueDates.bibliographicIssueDateType\"}}, \"issue\": {\"@value\": \"bibliographicIssueNumber\"}, \"volume\": {\"@value\": \"bibliographicVolumeNumber\"}, \"pageEnd\": {\"@value\": \"bibliographicPageEnd\"}, \"numPages\": {\"@value\": \"bibliographicNumberOfPages\"}, \"pageStart\": {\"@value\": \"bibliographicPageStart\"}, \"sourceTitle\": {\"@value\": \"bibliographic_titles.bibliographic_title\", \"@attributes\": {\"xml:lang\": \"bibliographic_titles.bibliographic_titleLang\"}}}}, \"item_1617187087799\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"dissertationNumber\": {\"@value\": \"subitem_dissertationnumber\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_dissertationnumber\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"dissertationNumber\": {\"@value\": \"subitem_dissertationnumber\"}}}, \"item_1617187112279\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"degreeName\": {\"@value\": \"subitem_degreename\", \"@attributes\": {\"xml:lang\": \"subitem_degreename_language\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_degreename\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"degreeName\": {\"@value\": \"subitem_degreename\", \"@attributes\": {\"xml:lang\": \"subitem_degreename_language\"}}}}, \"item_1617187136212\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"dateGranted\": {\"@value\": \"subitem_dategranted\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"date\": {\"@value\": \"subitem_dategranted\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"dateGranted\": {\"@value\": \"subitem_dategranted\"}}}, \"item_1617187187528\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"conference\": {\"conferenceDate\": {\"@value\": \"subitem_conference_date.subitem_conference_period\", \"@attributes\": {\"endDay\": \"subitem_conference_date.subitem_conference_end_day\", \"endYear\": \"subitem_conference_date.subitem_conference_end_year\", \"endMonth\": \"subitem_conference_date.subitem_conference_end_month\", \"startDay\": \"subitem_conference_date.subitem_conference_start_day\", \"xml:lang\": \"subitem_conference_date.subitem_conference_date_language\", \"startYear\": \"subitem_conference_date.subitem_conference_start_year\", \"startMonth\": \"subitem_conference_date.subitem_conference_start_month\"}}, \"conferenceName\": {\"@value\": \"subitem_conference_names.subitem_conference_name\", \"@attributes\": {\"xml:lang\": \"subitem_conference_names.subitem_conference_name_language\"}}, \"conferenceVenue\": {\"@value\": \"subitem_conference_venues.subitem_conference_venue\", \"@attributes\": {\"xml:lang\": \"subitem_conference_venues.subitem_conference_venue_language\"}}, \"conferenceCountry\": {\"@value\": \"subitem_conference_country\"}, \"conferenceSponsor\": {\"@value\": \"subitem_conference_sponsors.subitem_conference_sponsor\", \"@attributes\": {\"xml:lang\": \"subitem_conference_sponsors.subitem_conference_sponsor_language\"}}, \"conferenceSequence\": {\"@value\": \"subitem_conference_sequence\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"conference\": {\"conferenceDate\": {\"@value\": \"subitem_conference_date.subitem_conference_period\", \"@attributes\": {\"endDay\": \"subitem_conference_date.subitem_conference_end_day\", \"endYear\": \"subitem_conference_date.subitem_conference_end_year\", \"endMonth\": \"subitem_conference_date.subitem_conference_end_month\", \"startDay\": \"subitem_conference_date.subitem_conference_start_day\", \"xml:lang\": \"subitem_conference_date.subitem_conference_date_language\", \"startYear\": \"subitem_conference_date.subitem_conference_start_year\", \"startMonth\": \"subitem_conference_date.subitem_conference_start_month\"}}, \"conferenceName\": {\"@value\": \"subitem_conference_names.subitem_conference_name\", \"@attributes\": {\"xml:lang\": \"subitem_conference_names.subitem_conference_name_language\"}}, \"conferenceVenue\": {\"@value\": \"subitem_conference_venues.subitem_conference_venue\", \"@attributes\": {\"xml:lang\": \"subitem_conference_venues.subitem_conference_venue_language\"}}, \"conferenceCountry\": {\"@value\": \"subitem_conference_country\"}, \"conferenceSponsor\": {\"@value\": \"subitem_conference_sponsors.subitem_conference_sponsor\", \"@attributes\": {\"xml:lang\": \"subitem_conference_sponsors.subitem_conference_sponsor_language\"}}, \"conferenceSequence\": {\"@value\": \"subitem_conference_sequence\"}}}}, \"item_1617258105262\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"type\": {\"@value\": \"resourcetype\", \"@attributes\": {\"rdf:resource\": \"resourceuri\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"resourceuri\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"type\": {\"@value\": \"resourcetype\", \"@attributes\": {\"rdf:resource\": \"resourceuri\"}}}}, \"item_1617265215918\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"versiontype\": {\"@value\": \"subitem_version_type\", \"@attributes\": {\"rdf:resource\": \"subitem_version_resource\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"type\": {\"@value\": \"subitem_version_type\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"versiontype\": {\"@value\": \"subitem_version_type\", \"@attributes\": {\"rdf:resource\": \"subitem_version_resource\"}}}}, \"item_1617349709064\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"contributor\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"@attributes\": {\"contributorType\": \"contributorType\"}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationURI\", \"nameIdentifierScheme\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationScheme\"}}, \"affiliationName\": {\"@value\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationName\", \"@attributes\": {\"xml:lang\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationNameLang\"}}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"contributorName\": {\"@value\": \"contributorNames.contributorName\", \"@attributes\": {\"xml:lang\": \"contributorNames.lang\"}}, \"contributorAlternative\": {\"@value\": \"contributorAlternatives.contributorAlternative\", \"@attributes\": {\"xml:lang\": \"contributorAlternatives.contributorAlternativeLang\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"contributor\": {\"@value\": \"contributorNames.contributorName,nameIdentifiers.nameIdentifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"contributor\": {\"givenName\": {\"@value\": \"givenNames.givenName\", \"@attributes\": {\"xml:lang\": \"givenNames.givenNameLang\"}}, \"familyName\": {\"@value\": \"familyNames.familyName\", \"@attributes\": {\"xml:lang\": \"familyNames.familyNameLang\"}}, \"@attributes\": {\"contributorType\": \"contributorType\"}, \"affiliation\": {\"nameIdentifier\": {\"@value\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationNameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationURI\", \"nameIdentifierScheme\": \"contributorAffiliations.contributorAffiliationNameIdentifiers.contributorAffiliationScheme\"}}, \"affiliationName\": {\"@value\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationName\", \"@attributes\": {\"xml:lang\": \"contributorAffiliations.contributorAffiliationNames.contributorAffiliationNameLang\"}}}, \"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"contributorName\": {\"@value\": \"contributorNames.contributorName\", \"@attributes\": {\"xml:lang\": \"contributorNames.lang\"}}, \"contributorAlternative\": {\"@value\": \"contributorAlternatives.contributorAlternative\", \"@attributes\": {\"xml:lang\": \"contributorAlternatives.contributorAlternativeLang\"}}}}}, \"item_1617349808926\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"version\": {\"@value\": \"subitem_version\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"version\": {\"@value\": \"subitem_version\"}}}, \"item_1617351524846\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"apc\": {\"@value\": \"subitem_apc\"}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"apc\": {\"@value\": \"subitem_apc\"}}}, \"item_1617353299429\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"relation\": {\"@attributes\": {\"relationType\": \"subitem_relation_type\"}, \"relatedTitle\": {\"@value\": \"subitem_relation_name.subitem_relation_name_text\", \"@attributes\": {\"xml:lang\": \"subitem_relation_name.subitem_relation_name_language\"}}, \"relatedIdentifier\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text\", \"@attributes\": {\"identifierType\": \"subitem_relation_type_id.subitem_relation_type_select\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"relation\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text,subitem_relation_name.subitem_relation_name_text\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"relation\": {\"@attributes\": {\"relationType\": \"subitem_relation_type\"}, \"relatedTitle\": {\"@value\": \"subitem_relation_name.subitem_relation_name_text\", \"@attributes\": {\"xml:lang\": \"subitem_relation_name.subitem_relation_name_language\"}}, \"relatedIdentifier\": {\"@value\": \"subitem_relation_type_id.subitem_relation_type_id_text\", \"@attributes\": {\"identifierType\": \"subitem_relation_type_id.subitem_relation_type_select\"}}}}}, \"item_1617610673286\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"rightsHolder\": {\"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"rightsHolderName\": {\"@value\": \"rightHolderNames.rightHolderName\", \"@attributes\": {\"xml:lang\": \"rightHolderNames.rightHolderLanguage\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"rightsHolder\": {\"nameIdentifier\": {\"@value\": \"nameIdentifiers.nameIdentifier\", \"@attributes\": {\"nameIdentifierURI\": \"nameIdentifiers.nameIdentifierURI\", \"nameIdentifierScheme\": \"nameIdentifiers.nameIdentifierScheme\"}}, \"rightsHolderName\": {\"@value\": \"rightHolderNames.rightHolderName\", \"@attributes\": {\"xml:lang\": \"rightHolderNames.rightHolderLanguage\"}}}}}, \"item_1617620223087\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": \"\", \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"item_1617944105607\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"degreeGrantor\": {\"nameIdentifier\": {\"@value\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_name\", \"@attributes\": {\"nameIdentifierScheme\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_scheme\"}}, \"degreeGrantorName\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\", \"@attributes\": {\"xml:lang\": \"subitem_degreegrantor.subitem_degreegrantor_language\"}}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"description\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"degreeGrantor\": {\"nameIdentifier\": {\"@value\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_name\", \"@attributes\": {\"nameIdentifierScheme\": \"subitem_degreegrantor_identifie.subitem_degreegrantor_identifier_scheme\"}}, \"degreeGrantorName\": {\"@value\": \"subitem_degreegrantor.subitem_degreegrantor_name\", \"@attributes\": {\"xml:lang\": \"subitem_degreegrantor.subitem_degreegrantor_language\"}}}}}, \"item_1718082005802\": {\"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"file\": {\"URI\": {\"@value\": \"url.url\", \"@attributes\": {\"label\": \"url.label\", \"objectType\": \"url.objectType\"}}, \"date\": {\"@value\": \"fileDate.fileDateValue\", \"@attributes\": {\"dateType\": \"fileDate.fileDateType\"}}, \"extent\": {\"@value\": \"filesize.value\"}, \"version\": {\"@value\": \"version\"}, \"mimeType\": {\"@value\": \"format\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": \"\", \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": \"\"}, \"system_identifier_doi\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}, \"system_identifier_hdl\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}, \"system_identifier_uri\": {\"ddi_mapping\": {\"stdyDscr\": {\"citation\": {\"holdings\": {\"@attributes\": {\"URI\": \"subitem_systemidt_identifier\"}}}}}, \"lom_mapping\": \"\", \"lido_mapping\": \"\", \"spase_mapping\": \"\", \"jpcoar_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}, \"junii2_mapping\": \"\", \"oai_dc_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\"}}, \"display_lang_type\": \"\", \"jpcoar_v1_mapping\": {\"identifier\": {\"@value\": \"subitem_systemidt_identifier\", \"@attributes\": {\"identifierType\": \"subitem_systemidt_identifier_type\"}}}}}", + "version_id": 1 + } + ], + "item_type_property": [ + { + "id": 30001, + "name": "Dataset Usage", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_dataset_usage\": {\"type\": \"string\", \"title\": \"Dataset Usage\", \"format\": \"text\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_dataset_usage\", \"type\": \"text\", \"title\": \"Dataset Usage\", \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Dataset Usage\", \"ja\": \"データ名\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30002, + "name": "Applicant", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_fullname\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\"}, \"subitem_position\": {\"enum\": [], \"type\": \"string\", \"title\": \"Position\", \"format\": \"select\"}, \"subitem_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\"}, \"subitem_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\"}, \"subitem_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\"}, \"subitem_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\"}, \"subitem_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"parentkey.subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"parentkey.subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"parentkey.subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"parentkey.subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"parentkey.subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"parentkey.subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_fullname\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"parentkey[].subitem_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"parentkey[].subitem_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"parentkey[].subitem_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"parentkey[].subitem_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"parentkey[].subitem_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"parentkey[].subitem_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Applicant\", \"ja\": \"申請者\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30003, + "name": "Applicant Affiliated Institution", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_institution_name\": {\"type\": \"string\", \"title\": \"Institution Name\", \"format\": \"text\"}, \"subitem_restricted_access_institution_position\": {\"enum\": [], \"type\": \"string\", \"title\": \"Institution Position\", \"format\": \"select\"}}}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_institution_name\", \"type\": \"text\", \"title\": \"Institution Name\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, {\"key\": \"parentkey.subitem_restricted_access_institution_position\", \"type\": \"select\", \"title\": \"Institution Position\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}}], \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_institution_name\", \"type\": \"text\", \"title\": \"Institution Name\", \"title_i18n\": {\"en\": \"Institution Name\", \"ja\": \"所属学会名\"}}, {\"key\": \"parentkey[].subitem_restricted_access_institution_position\", \"type\": \"select\", \"title\": \"Institution Position\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Institution Position\", \"ja\": \"所属学会役職\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Applicant Affiliated Institution\", \"ja\": \"申請者所属学会\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30004, + "name": "Guarantor", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_guarantor_name\": {\"type\": \"string\", \"title\": \"Name\", \"format\": \"text\"}, \"subitem_restricted_access_guarantor_position\": {\"enum\": [], \"type\": \"string\", \"title\": \"Position\", \"format\": \"select\"}, \"subitem_restricted_access_guarantor_mail_address\": {\"type\": \"string\", \"title\": \"Mail Address\", \"format\": \"text\"}, \"subitem_restricted_access_guarantor_phone_number\": {\"type\": \"string\", \"title\": \"Phone Number\", \"format\": \"text\"}, \"subitem_restricted_access_guarantor_position(others)\": {\"type\": \"string\", \"title\": \"Position(Others)\", \"format\": \"text\"}, \"subitem_restricted_access_guarantor_university/institution\": {\"type\": \"string\", \"title\": \"University/Institution\", \"format\": \"text\"}, \"subitem_restricted_access_guarantor_affiliated_division/department\": {\"type\": \"string\", \"title\": \"Affiliated Division/Department\", \"format\": \"text\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_guarantor_name\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"parentkey.subitem_restricted_access_guarantor_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"approval\": true, \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"parentkey.subitem_restricted_access_guarantor_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"parentkey.subitem_restricted_access_guarantor_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"parentkey.subitem_restricted_access_guarantor_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"parentkey.subitem_restricted_access_guarantor_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"parentkey.subitem_restricted_access_guarantor_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"title_i18n\": {\"en\": \"Guarantor\", \"ja\": \"保証人\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_guarantor_name\", \"type\": \"text\", \"title\": \"Name\", \"title_i18n\": {\"en\": \"Name\", \"ja\": \"名前\"}}, {\"key\": \"parentkey[].subitem_restricted_access_guarantor_mail_address\", \"type\": \"text\", \"title\": \"Mail Address\", \"approval\": true, \"title_i18n\": {\"en\": \"Mail Address\", \"ja\": \"メールアドレス\"}}, {\"key\": \"parentkey[].subitem_restricted_access_guarantor_university/institution\", \"type\": \"text\", \"title\": \"University/Institution\", \"title_i18n\": {\"en\": \"University/Institution\", \"ja\": \"所属大学・機関\"}}, {\"key\": \"parentkey[].subitem_restricted_access_guarantor_affiliated_division/department\", \"type\": \"text\", \"title\": \"Affiliated Division/Department\", \"title_i18n\": {\"en\": \"Affiliated Division/Department\", \"ja\": \"所属部局・部署\"}}, {\"key\": \"parentkey[].subitem_restricted_access_guarantor_position\", \"type\": \"select\", \"title\": \"Position\", \"titleMap\": [], \"htmlClass\": \"cls-position\", \"title_i18n\": {\"en\": \"Position\", \"ja\": \"役職\"}}, {\"key\": \"parentkey[].subitem_restricted_access_guarantor_position(others)\", \"type\": \"text\", \"title\": \"Position(Others)\", \"htmlClass\": \"cls-position-others\", \"title_i18n\": {\"en\": \"Position(Others)\", \"ja\": \"役職(その他)\"}}, {\"key\": \"parentkey[].subitem_restricted_access_guarantor_phone_number\", \"type\": \"text\", \"title\": \"Phone Number\", \"title_i18n\": {\"en\": \"Phone Number\", \"ja\": \"電話番号\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Guarantor\", \"ja\": \"保証人\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30005, + "name": "Usage Report ID", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_usage_report_id\": {\"type\": \"string\", \"title\": \"Usage Report ID\", \"format\": \"text\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_usage_report_id\", \"type\": \"text\", \"title\": \"Usage Report ID\", \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Usage Report ID\", \"ja\": \"利用報告ID \"}}", + "delflg": false, + "sort": null + }, + { + "id": 30006, + "name": "Research Title", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_research_title\": {\"type\": \"string\", \"title\": \"Research Title\", \"format\": \"text\"}}}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_research_title\", \"type\": \"text\", \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}], \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_research_title\", \"type\": \"text\", \"title\": \"Research Title\", \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Research Title\", \"ja\": \"研究題目\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30007, + "name": "Research Plan", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_research_plan\": {\"type\": \"string\", \"title\": \"Research Plan\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"subitem_restricted_access_research_plan_type\": {\"enum\": [\"Abstract\"], \"type\": \"string\", \"title\": \"Research Plan Type\", \"format\": \"select\", \"default\": \"Abstract\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_research_plan\", \"type\": \"textarea\", \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"key\": \"parentkey.subitem_restricted_access_research_plan_type\", \"type\": \"select\", \"title\": \"Research Plan Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}}], \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_research_plan\", \"type\": \"textarea\", \"title\": \"Research Plan\", \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}, {\"key\": \"parentkey[].subitem_restricted_access_research_plan_type\", \"type\": \"select\", \"title\": \"Research Plan Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Abstract\", \"value\": \"Abstract\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Research Plan Type\", \"ja\": \"研究計画タイプ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Research Plan\", \"ja\": \"研究計画\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30008, + "name": "Co-user List", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\"}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\"}}}, \"date\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"dateType\": {\"enum\": [], \"type\": \"string\", \"title\": \"日付タイプ\", \"format\": \"select\"}, \"dateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"オープンアクセスの日付\", \"format\": \"array\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\"}, \"groups\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"グループ\", \"format\": \"select\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\"}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\"}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\"}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"表示名\", \"format\": \"text\"}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\"}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessrole\": {\"enum\": [null, \"open_access\", \"open_date\", \"open_login\", \"open_no\"], \"type\": [\"null\", \"string\"], \"title\": \"アクセス\", \"format\": \"radios\"}, \"displaytype\": {\"enum\": [null, \"detail\", \"simple\", \"preview\"], \"type\": [\"null\", \"string\"], \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \"自由ライセンス\", \"format\": \"textarea\"}, \"licensetype\": {\"enum\": [], \"type\": [\"null\", \"string\"], \"title\": \"ライセンス\", \"format\": \"select\", \"editAble\": false}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"fieldHtmlClass\": \"file-name\"}, {\"key\": \"parentkey.url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"disableSuccessState\": true}, {\"key\": \"parentkey.url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"parentkey.url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"parentkey.format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"parentkey.filesize\", \"items\": [{\"key\": \"parentkey.filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"parentkey.fileDate\", \"items\": [{\"key\": \"parentkey.fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"parentkey.fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"parentkey.version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"parentkey.displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"parentkey.licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"parentkey.licensefree\", \"type\": \"textarea\", \"notitle\": true, \"condition\": \"model.parentkey.licensetype == ''license_free''\"}, {\"type\": \"template\", \"title\": \"剽窃チェック\", \"template\": \"
{{ form.title }}
\", \"title_i18n\": {\"en\": \"Check Plagiarism\", \"ja\": \"剽窃チェック\"}}, {\"key\": \"parentkey.accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"parentkey.date[0].dateValue\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.parentkey.accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.groups\", \"type\": \"select\", \"title\": \"グループ\", \"titleMap\": [], \"condition\": \"model.parentkey.accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Group\", \"ja\": \"グループ\"}}], \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\", \"fieldHtmlClass\": \"file-name\"}, {\"key\": \"parentkey[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"disableSuccessState\": true}, {\"key\": \"parentkey[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"parentkey[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"parentkey[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"parentkey[].filesize\", \"items\": [{\"key\": \"parentkey[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"parentkey[].fileDate\", \"items\": [{\"key\": \"parentkey[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"parentkey[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"parentkey[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"parentkey[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"parentkey[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"parentkey[].licensefree\", \"type\": \"textarea\", \"notitle\": true, \"condition\": \"model.parentkey[arrayIndex].licensetype == ''license_free''\"}, {\"type\": \"template\", \"title\": \"剽窃チェック\", \"template\": \"
{{ form.title }}
\", \"title_i18n\": {\"en\": \"Check Plagiarism\", \"ja\": \"剽窃チェック\"}}, {\"key\": \"parentkey[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do not Publish\", \"ja\": \"公開しない\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"parentkey[].date[0].dateValue\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey[].groups\", \"type\": \"select\", \"title\": \"グループ\", \"titleMap\": [], \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Group\", \"ja\": \"グループ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Co-user List\", \"ja\": \"共同利用者リスト\"}}", + "delflg": false, + "sort": 2 + }, + { + "id": 30009, + "name": "Usage Report", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_usage_report\": {\"type\": \"string\", \"title\": \"Usage Report\", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_usage_report\", \"type\": \"textarea\", \"title\": \"Usage Report\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}], \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_usage_report\", \"type\": \"textarea\", \"title\": \"Usage Report\", \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Usage Report\", \"ja\": \"利用報告\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30010, + "name": "Stop/Continue", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_stop/continue\": {\"enum\": [\"Stop\", \"Continue\"], \"type\": \"string\", \"title\": \"Stop/Continue\", \"format\": \"radios\"}}}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_stop/continue\", \"type\": \"radios\", \"title\": \"Stop/Continue\", \"titleMap\": [{\"name\": \"Stop\", \"value\": \"Stop\", \"name_i18n\": {\"en\": \"Stop\", \"ja\": \"終了\"}}, {\"name\": \"Continue\", \"value\": \"Continue\", \"name_i18n\": {\"en\": \"Continue\", \"ja\": \"継続\"}}], \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}], \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_stop/continue\", \"type\": \"radios\", \"title\": \"Stop/Continue\", \"titleMap\": [{\"name\": \"Stop\", \"value\": \"Stop\", \"name_i18n\": {\"en\": \"Stop\", \"ja\": \"終了\"}}, {\"name\": \"Continue\", \"value\": \"Continue\", \"name_i18n\": {\"en\": \"Continue\", \"ja\": \"継続\"}}], \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Stop/Continue\", \"ja\": \"終了/継続\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30011, + "name": "WF Issued Date", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_wf_issued_date\": {\"type\": \"string\", \"title\": \"WF Issued Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"subitem_restricted_access_wf_issued_date_type\": {\"enum\": [\"Created\"], \"type\": \"string\", \"title\": \"WF Issued Date Type\", \"format\": \"select\", \"default\": \"Created\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_wf_issued_date\", \"type\": \"template\", \"title\": \"WF Issued Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey[].subitem_restricted_access_wf_issued_date_type\", \"type\": \"select\", \"title\": \"WF Issued Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Created\", \"value\": \"Created\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"WF Issued Date Type\", \"ja\": \"WF起票日タイプ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"WF Issued Date\", \"ja\": \"WF起票日\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30012, + "name": "Application Date", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_application_date\": {\"type\": \"string\", \"title\": \"Application Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"subitem_restricted_access_application_date_type\": {\"enum\": [\"Issued\"], \"type\": \"string\", \"title\": \"Application Date Type\", \"format\": \"select\", \"default\": \"Issued\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_application_date\", \"type\": \"template\", \"title\": \"Application Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey[].subitem_restricted_access_application_date_type\", \"type\": \"select\", \"title\": \"Application Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Issued\", \"value\": \"Issued\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Application Date Type\", \"ja\": \"申請日タイプ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Application Date\", \"ja\": \"申請日\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30013, + "name": "Approval Date", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_approval_date\": {\"type\": \"string\", \"title\": \"Approval Date\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"subitem_restricted_access_approval_date_type\": {\"enum\": [\"Accepted\"], \"type\": \"string\", \"title\": \"Approval Date Type\", \"format\": \"select\", \"default\": \"Accepted\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey.subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ\"}}], \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_approval_date\", \"type\": \"template\", \"title\": \"Approval Date\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"key\": \"parentkey[].subitem_restricted_access_approval_date_type\", \"type\": \"select\", \"title\": \"Approval Date Type\", \"readonly\": true, \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}], \"htmlClass\": \"hide\", \"title_i18n\": {\"en\": \"Approval Date Type\", \"ja\": \"承認日タイプ \"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Approval Date\", \"ja\": \"承認日\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30014, + "name": "Item Title", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"subitem_restricted_access_item_title\": {\"type\": \"string\", \"title\": \"Item Title\", \"format\": \"text\"}}, \"system_prop\": true}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].subitem_restricted_access_item_title\", \"type\": \"text\", \"title\": \"Item Title\", \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Item Title\", \"ja\": \"アイテムタイトル\"}}", + "delflg": false, + "sort": null + }, + { + "id": 30015, + "name": "制限公開用のコンテンツファイル", + "schema": "{\"type\": \"object\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"object\", \"title\": \"本文URL\", \"format\": \"object\", \"properties\": {\"url\": {\"type\": \"string\", \"title\": \"本文URL\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"label\": {\"type\": \"string\", \"title\": \"ラベル\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"objectType\": {\"enum\": [null, \"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"], \"type\": \"string\", \"title\": \"オブジェクトタイプ\", \"format\": \"select\", \"currentEnum\": [\"abstract\", \"dataset\", \"fulltext\", \"software\", \"summary\", \"thumbnail\", \"other\"]}}}, \"roles\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"ロール\", \"format\": \"array\"}, \"terms\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"利用規約\", \"format\": \"select\"}, \"format\": {\"type\": \"string\", \"title\": \"フォーマット\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"provide\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"role\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"ロール\", \"format\": \"select\", \"currentEnum\": []}, \"workflow\": {\"enum\": [], \"type\": [\"string\", \"number\", \"null\"], \"title\": \"ワークフロー\", \"format\": \"select\", \"currentEnum\": []}}}, \"title\": \"提供方法\", \"format\": \"array\"}, \"version\": {\"type\": \"string\", \"title\": \"バージョン情報\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"fileDate\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"fileDateType\": {\"enum\": [null, \"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"], \"type\": [\"null\", \"string\"], \"title\": \"日付タイプ\", \"format\": \"select\", \"currentEnum\": [\"Accepted\", \"Collected\", \"Copyrighted\", \"Issued\", \"Submitted\", \"Updated\", \"Valid\"]}, \"fileDateValue\": {\"type\": \"string\", \"title\": \"日付\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"日付\", \"format\": \"array\"}, \"filename\": {\"enum\": [], \"type\": \"string\", \"title\": \"表示名\", \"format\": \"select\"}, \"filesize\": {\"type\": \"array\", \"items\": {\"type\": \"object\", \"format\": \"object\", \"properties\": {\"value\": {\"type\": \"string\", \"title\": \"サイズ\", \"format\": \"text\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}, \"title\": \"サイズ\", \"format\": \"array\"}, \"accessdate\": {\"type\": \"string\", \"title\": \"公開日\", \"format\": \"datetime\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"accessrole\": {\"enum\": [\"open_access\", \"open_date\", \"open_login\", \"open_no\", \"open_restricted\"], \"type\": \"string\", \"title\": \"アクセス\", \"format\": \"radios\", \"default\": \"open_restricted\"}, \"displaytype\": {\"enum\": [\"detail\", \"simple\", \"preview\"], \"type\": \"string\", \"title\": \"表示形式\", \"format\": \"select\"}, \"licensefree\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}, \"licensetype\": {\"enum\": [], \"type\": \"string\", \"title\": \"ライセンス\", \"format\": \"select\"}, \"termsDescription\": {\"type\": \"string\", \"title\": \" \", \"format\": \"textarea\", \"title_i18n\": {\"en\": \"\", \"ja\": \"\"}}}}", + "form": "{\"key\": \"parentkey\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\"}, {\"key\": \"parentkey.url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey.url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"disableSuccessState\": true}, {\"key\": \"parentkey.url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"parentkey.url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"parentkey.format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"parentkey.filesize\", \"items\": [{\"key\": \"parentkey.filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"parentkey.fileDate\", \"items\": [{\"key\": \"parentkey.fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}], \"title_i18n\": {\"en\": \"Date Type\", \"ja\": \"日付タイプ\"}}, {\"key\": \"parentkey.fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"parentkey.version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"parentkey.displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"parentkey.licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"parentkey[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey.licensetype == ''license_free''\"}, {\"key\": \"parentkey.accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"default\": \"open_restricted\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}, {\"name\": \"制限公開\", \"value\": \"open_restricted\", \"name_i18n\": {\"en\": \"Limited Access\", \"ja\": \"制限公開\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"parentkey.accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date''\", \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"parentkey.roles\", \"items\": [{\"key\": \"parentkey.roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": []}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date'' || model.parentkey[arrayIndex].accessrole == ''open_login''\"}, {\"add\": \"New\", \"key\": \"parentkey.provide\", \"items\": [{\"key\": \"parentkey.provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": []}, {\"key\": \"parentkey.provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"titleMap\": []}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"condition\": \"model.parentkey.accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}}, {\"key\": \"parentkey.terms\", \"type\": \"select\", \"title\": \"利用規約\", \"titleMap\": [], \"condition\": \"model.parentkey.accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}}, {\"key\": \"parentkey.termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey.accessrole == ''open_restricted'' && model.parentkey.terms== ''term_free''\"}], \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}}", + "forms": "{\"add\": \"New\", \"key\": \"parentkey\", \"items\": [{\"key\": \"parentkey[].filename\", \"type\": \"template\", \"title\": \"表示名\", \"onChange\": \"fileNameSelect(this, form, modelValue)\", \"titleMap\": [], \"title_i18n\": {\"en\": \"FileName\", \"ja\": \"表示名\"}, \"templateUrl\": \"/static/templates/weko_deposit/datalist.html\"}, {\"key\": \"parentkey[].url\", \"type\": \"fieldset\", \"items\": [{\"key\": \"parentkey[].url.url\", \"type\": \"text\", \"title\": \"本文URL\", \"feedback\": false, \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}, \"fieldHtmlClass\": \"file-text-url\", \"disableSuccessState\": true}, {\"key\": \"parentkey[].url.label\", \"type\": \"text\", \"title\": \"ラベル\", \"feedback\": false, \"title_i18n\": {\"en\": \"Label\", \"ja\": \"ラベル\"}, \"disableSuccessState\": true}, {\"key\": \"parentkey[].url.objectType\", \"type\": \"select\", \"title\": \"オブジェクトタイプ\", \"feedback\": false, \"titleMap\": [{\"name\": \"abstract\", \"value\": \"abstract\", \"name_i18n\": {\"en\": \"abstract\", \"ja\": \"abstract\"}}, {\"name\": \"dataset\", \"value\": \"dataset\", \"name_i18n\": {\"en\": \"dataset\", \"ja\": \"dataset\"}}, {\"name\": \"fulltext\", \"value\": \"fulltext\", \"name_i18n\": {\"en\": \"fulltext\", \"ja\": \"fulltext\"}}, {\"name\": \"software\", \"value\": \"software\", \"name_i18n\": {\"en\": \"software\", \"ja\": \"software\"}}, {\"name\": \"summary\", \"value\": \"summary\", \"name_i18n\": {\"en\": \"summary\", \"ja\": \"summary\"}}, {\"name\": \"thumbnail\", \"value\": \"thumbnail\", \"name_i18n\": {\"en\": \"thumbnail\", \"ja\": \"thumbnail\"}}, {\"name\": \"other\", \"value\": \"other\", \"name_i18n\": {\"en\": \"other\", \"ja\": \"other\"}}], \"title_i18n\": {\"en\": \"Object Type\", \"ja\": \"オブジェクトタイプ\"}, \"disableSuccessState\": true}], \"title\": \"本文URL\", \"title_i18n\": {\"en\": \"Text URL\", \"ja\": \"本文URL\"}}, {\"key\": \"parentkey[].format\", \"type\": \"text\", \"title\": \"フォーマット\", \"title_i18n\": {\"en\": \"Format\", \"ja\": \"フォーマット\"}}, {\"add\": \"New\", \"key\": \"parentkey[].filesize\", \"items\": [{\"key\": \"parentkey[].filesize[].value\", \"type\": \"text\", \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"サイズ\", \"title_i18n\": {\"en\": \"Size\", \"ja\": \"サイズ\"}}, {\"add\": \"New\", \"key\": \"parentkey[].fileDate\", \"items\": [{\"key\": \"parentkey[].fileDate[].fileDateType\", \"type\": \"select\", \"title\": \"日付タイプ\", \"titleMap\": [{\"name\": \"Accepted\", \"value\": \"Accepted\"}, {\"name\": \"Collected\", \"value\": \"Collected\"}, {\"name\": \"Copyrighted\", \"value\": \"Copyrighted\"}, {\"name\": \"Issued\", \"value\": \"Issued\"}, {\"name\": \"Submitted\", \"value\": \"Submitted\"}, {\"name\": \"Updated\", \"value\": \"Updated\"}, {\"name\": \"Valid\", \"value\": \"Valid\"}]}, {\"key\": \"parentkey[].fileDate[].fileDateValue\", \"type\": \"template\", \"title\": \"日付\", \"format\": \"yyyy-MM-dd\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"日付\", \"title_i18n\": {\"en\": \"Date\", \"ja\": \"日付\"}}, {\"key\": \"parentkey[].version\", \"type\": \"text\", \"title\": \"バージョン情報\", \"title_i18n\": {\"en\": \"Version Information\", \"ja\": \"バージョン情報\"}}, {\"key\": \"parentkey[].displaytype\", \"type\": \"select\", \"title\": \"表示形式\", \"titleMap\": [{\"name\": \"詳細表示\", \"value\": \"detail\", \"name_i18n\": {\"en\": \"Detail\", \"ja\": \"詳細表示\"}}, {\"name\": \"簡易表示\", \"value\": \"simple\", \"name_i18n\": {\"en\": \"Simple\", \"ja\": \"簡易表示\"}}, {\"name\": \"プレビュー\", \"value\": \"preview\", \"name_i18n\": {\"en\": \"Preview\", \"ja\": \"プレビュー\"}}], \"title_i18n\": {\"en\": \"Preview\", \"ja\": \"表示形式\"}}, {\"key\": \"parentkey[].licensetype\", \"type\": \"select\", \"title\": \"ライセンス\", \"titleMap\": [], \"title_i18n\": {\"en\": \"License\", \"ja\": \"ライセンス\"}}, {\"key\": \"parentkey[].licensefree\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey[arrayIndex].licensetype == ''license_free''\"}, {\"key\": \"parentkey[].accessrole\", \"type\": \"radios\", \"title\": \"アクセス\", \"default\": \"open_restricted\", \"titleMap\": [{\"name\": \"オープンアクセス\", \"value\": \"open_access\", \"name_i18n\": {\"en\": \"Open Access\", \"ja\": \"オープンアクセス\"}}, {\"name\": \"オープンアクセス日を指定する\", \"value\": \"open_date\", \"name_i18n\": {\"en\": \"Input Open Access Date\", \"ja\": \"オープンアクセス日を指定する\"}}, {\"name\": \"ログインユーザのみ\", \"value\": \"open_login\", \"name_i18n\": {\"en\": \"Registered User Only\", \"ja\": \"ログインユーザのみ\"}}, {\"name\": \"公開しない\", \"value\": \"open_no\", \"name_i18n\": {\"en\": \"Do Not Publish\", \"ja\": \"公開しない\"}}, {\"name\": \"制限公開\", \"value\": \"open_restricted\", \"name_i18n\": {\"en\": \"Limited Access\", \"ja\": \"制限公開\"}}], \"title_i18n\": {\"en\": \"Access\", \"ja\": \"アクセス\"}}, {\"key\": \"parentkey[].accessdate\", \"type\": \"template\", \"title\": \"公開日\", \"format\": \"yyyy-MM-dd\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date''\", \"title_i18n\": {\"en\": \"Opendate\", \"ja\": \"公開日\"}, \"templateUrl\": \"/static/templates/weko_deposit/datepicker.html\"}, {\"add\": \"New\", \"key\": \"parentkey[].roles\", \"items\": [{\"key\": \"parentkey[].roles[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"ロール\", \"titleMap\": [], \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_date'' || model.parentkey[arrayIndex].accessrole == ''open_login''\", \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}}, {\"add\": \"New\", \"key\": \"parentkey[].provide\", \"items\": [{\"key\": \"parentkey[].provide[].workflow\", \"type\": \"select\", \"title\": \"ワークフロー\", \"titleMap\": [], \"title_i18n\": {\"en\": \"WorkFlow\", \"ja\": \"ワークフロー\"}}, {\"key\": \"parentkey[].provide[].role\", \"type\": \"select\", \"title\": \"ロール\", \"titleMap\": [], \"title_i18n\": {\"en\": \"Role\", \"ja\": \"ロール\"}}], \"style\": {\"add\": \"btn-success\"}, \"title\": \"提供方法\", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Providing Method\", \"ja\": \"提供方法\"}}, {\"key\": \"parentkey[].terms\", \"type\": \"select\", \"title\": \"利用規約\", \"titleMap\": [], \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_restricted''\", \"title_i18n\": {\"en\": \"Terms and Conditions\", \"ja\": \"利用規約\"}}, {\"key\": \"parentkey[].termsDescription\", \"type\": \"textarea\", \"title\": \" \", \"condition\": \"model.parentkey[arrayIndex].accessrole == ''open_restricted'' && model.parentkey[arrayIndex].terms== ''term_free''\"}], \"style\": {\"add\": \"btn-success\"}, \"title_i18n\": {\"en\": \"Restricted Access Content File\", \"ja\": \"制限公開用のコンテンツファイル\"}}", + "delflg": false, + "sort": null + } + ], + "accounts_role": [ + { + "name": "General" + } + ], + "index": [ + { + "id": 1703552310404, + "parent": 0, + "position": -100, + "index_name": "利用申請", + "index_name_english": "Usage Application", + "index_link_name": "", + "index_link_name_english": "New Index", + "harvest_spec": "", + "index_link_enabled": false, + "comment": "", + "more_check": false, + "display_no": 5, + "harvest_public_state": false, + "display_format": "1", + "image_name": "", + "public_state": false, + "public_date": null, + "recursive_public_state": false, + "rss_status": false, + "coverpage_state": false, + "recursive_coverpage_check": false, + "browsing_role": "3,xxx,-98,-99", + "recursive_browsing_role": false, + "contribute_role": "1,2,3,4,xxx,-98,-99", + "recursive_contribute_role": false, + "browsing_group": "", + "recursive_browsing_group": false, + "contribute_group": "", + "recursive_contribute_group": false, + "owner_user_id": 1, + "item_custom_sort": {}, + "biblio_flag": false, + "online_issn": "false", + "is_deleted": false + }, + { + "id": 1616224532673, + "parent": 0, + "position": -99, + "index_name": "利用報告", + "index_name_english": "Data Usage Report", + "index_link_name": "", + "index_link_name_english": "New Index", + "harvest_spec": "", + "index_link_enabled": false, + "comment": "", + "more_check": false, + "display_no": 5, + "harvest_public_state": true, + "display_format": "1", + "image_name": "", + "public_state": false, + "public_date": null, + "recursive_public_state": false, + "rss_status": false, + "coverpage_state": false, + "recursive_coverpage_check": false, + "browsing_role": "3,-98,-99", + "recursive_browsing_role": false, + "contribute_role": "1,2,3,4,-98,-99", + "recursive_contribute_role": false, + "browsing_group": "", + "recursive_browsing_group": false, + "contribute_group": "", + "recursive_contribute_group": false, + "owner_user_id": 1, + "item_custom_sort": {}, + "biblio_flag": false, + "online_issn": "false", + "is_deleted": false + } + ], + "workflow_flow_define": [ + { + "status": "N", + "id": 31001, + "flow_id": "cc3aa348-f0da-4cef-b404-ffaabb1d5894", + "flow_name": "利用報告/Data Usage Report", + "flow_user": 1, + "flow_status": "A", + "is_deleted": false, + "flow_type": 1, + "repository_id": "Root Index" + }, + { + "status": "N", + "id": 31002, + "flow_id": "a6ff688f-4b53-457c-9b5c-e5d4cc3b3068", + "flow_name": "default_利用申請フロー", + "flow_user": 1, + "flow_status": "A", + "is_deleted": false, + "flow_type": 1, + "repository_id": "Root Index" + }, + { + "status": "N", + "id": 31003, + "flow_id": "92408473-006d-479d-a931-85ba931e2492", + "flow_name": "default_二段階利用申請フロー", + "flow_user": 1, + "flow_status": "A", + "is_deleted": false, + "flow_type": 1, + "repository_id": "Root Index" + }, + { + "status": "N", + "id": 31004, + "flow_id": "d8635b0d-733a-468d-b7d1-2731ed720c8e", + "flow_name": "default_利用規約のみフロー", + "flow_user": 1, + "flow_status": "M", + "is_deleted": false, + "flow_type": 1, + "repository_id": "Root Index" + } + ], + "workflow_flow_action": [ + { + "status": "N", + "id": 31001, + "flow_id": "cc3aa348-f0da-4cef-b404-ffaabb1d5894", + "action_id": 1, + "action_version": "1.0.0", + "action_order": 1, + "action_condition": null, + "action_status": "A", + "send_mail_setting": null + }, + { + "status": "N", + "id": 31003, + "flow_id": "cc3aa348-f0da-4cef-b404-ffaabb1d5894", + "action_id": 3, + "action_version": "1.0.1", + "action_order": 2, + "action_condition": null, + "action_status": "A", + "send_mail_setting": null + }, + { + "status": "N", + "id": 31004, + "flow_id": "cc3aa348-f0da-4cef-b404-ffaabb1d5894", + "action_id": 4, + "action_version": "2.0.0", + "action_order": 3, + "action_condition": null, + "action_status": "A", + "send_mail_setting": null + }, + { + "status": "N", + "id": 31002, + "flow_id": "cc3aa348-f0da-4cef-b404-ffaabb1d5894", + "action_id": 2, + "action_version": "1.0.0", + "action_order": 4, + "action_condition": null, + "action_status": "A", + "send_mail_setting": null + }, + { + "status": "N", + "id": 31005, + "flow_id": "a6ff688f-4b53-457c-9b5c-e5d4cc3b3068", + "action_id": 1, + "action_version": "1.0.0", + "action_order": 1, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31006, + "flow_id": "a6ff688f-4b53-457c-9b5c-e5d4cc3b3068", + "action_id": 3, + "action_version": "1.0.1", + "action_order": 2, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31007, + "flow_id": "a6ff688f-4b53-457c-9b5c-e5d4cc3b3068", + "action_id": 4, + "action_version": "2.0.0", + "action_order": 3, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31008, + "flow_id": "a6ff688f-4b53-457c-9b5c-e5d4cc3b3068", + "action_id": 2, + "action_version": "1.0.0", + "action_order": 4, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31009, + "flow_id": "92408473-006d-479d-a931-85ba931e2492", + "action_id": 1, + "action_version": "1.0.0", + "action_order": 1, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31010, + "flow_id": "92408473-006d-479d-a931-85ba931e2492", + "action_id": 3, + "action_version": "1.0.1", + "action_order": 2, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31011, + "flow_id": "92408473-006d-479d-a931-85ba931e2492", + "action_id": 4, + "action_version": "2.0.0", + "action_order": 3, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31012, + "flow_id": "92408473-006d-479d-a931-85ba931e2492", + "action_id": 4, + "action_version": "2.0.0", + "action_order": 4, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31013, + "flow_id": "92408473-006d-479d-a931-85ba931e2492", + "action_id": 2, + "action_version": "1.0.0", + "action_order": 5, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31014, + "flow_id": "d8635b0d-733a-468d-b7d1-2731ed720c8e", + "action_id": 1, + "action_version": "1.0.0", + "action_order": 1, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + }, + { + "status": "N", + "id": 31015, + "flow_id": "d8635b0d-733a-468d-b7d1-2731ed720c8e", + "action_id": 2, + "action_version": "1.0.0", + "action_order": 2, + "action_condition": null, + "action_status": "A", + "send_mail_setting": {} + } + ], + "workflow_workflow": [ + { + "status": "N", + "id": 31001, + "flows_id": "cc3aa348-f0da-4cef-b404-ffaabb1d5894", + "flows_name": "利用報告/Data Usage Report", + "itemtype_id": 31003, + "index_tree_id": null, + "flow_id": 31001, + "is_deleted": false, + "open_restricted": false, + "is_gakuninrdm": false, + "repository_id": "Root Index" + }, + { + "status": "N", + "id": 31002, + "flows_id": "98c4f391-595c-4cc7-90b7-468c57a80e51", + "flows_name": "利用申請", + "itemtype_id": 31001, + "index_tree_id": 1703552310404, + "flow_id": 31002, + "is_deleted": false, + "open_restricted": true, + "is_gakuninrdm": false, + "repository_id": "Root Index" + }, + { + "status": "N", + "id": 31003, + "flows_id": "cfbbaed1-c0eb-49ac-b64d-e78892bdea91", + "flows_name": "二段階利用申請", + "itemtype_id": 31002, + "index_tree_id": 1703552310404, + "flow_id": 31003, + "is_deleted": false, + "open_restricted": true, + "is_gakuninrdm": false, + "repository_id": "Root Index" + }, + { + "status": "N", + "id": 31004, + "flows_id": "e0f79e2c-695f-412d-90c4-ae8f91b86949", + "flows_name": "利用規約のみ", + "itemtype_id": 31001, + "index_tree_id": 1703552310404, + "flow_id": 31004, + "is_deleted": false, + "open_restricted": true, + "is_gakuninrdm": false, + "repository_id": "Root Index" + } + ], + "workflow_userrole": [ + { + "status": "N", + "workflow_id": 31002, + "role_id": 3 + }, + { + "status": "N", + "workflow_id": 31002, + "role_id": "xxx" + }, + { + "status": "N", + "workflow_id": 31002, + "role_id": 4 + }, + { + "status": "N", + "workflow_id": 31003, + "role_id": 3 + }, + { + "status": "N", + "workflow_id": 31003, + "role_id": 4 + }, + { + "status": "N", + "workflow_id": 31003, + "role_id": "xxx" + }, + { + "status": "N", + "workflow_id": 31004, + "role_id": 3 + }, + { + "status": "N", + "workflow_id": 31004, + "role_id": 4 + }, + { + "status": "N", + "workflow_id": 31004, + "role_id": "xxx" + } + ], + "mail_template_genres": [ + { + "id": 1, + "name": "Notification of secret URL provision" + }, + { + "id": 2, + "name": "Guidance to the application form" + }, + { + "id": 3, + "name": "Others" + } + ], + "mail_templates": [ + { + "id": 1, + "mail_subject": "利用申請登録のご案内/Register Application for Use", + "mail_body": "[restricted_site_name_ja]です。\n下記のリンクにアクセスしていただき、利用申請の登録を行ってください。\n\n[url_guest_user]\n\n*ブラウザの戻るボタンを利用して、前画面へ戻る操作は非推奨です。\n*前のアクションに戻る場合は、画面中央の戻るボタンを、ランディングページに戻る場合は左下にあるボタンを利用してください。\n\nこのメールは自動送信されているので返信しないでください。\nお問い合わせは下記までお願いします。また、このメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nThis is a message from [restricted_site_name_en].\nPlease access the link below and register your Application.\n\n[url_guest_user]\n\nBrowser back buttons to return to the previous action are deprecated.\nTo return to the previous action, please use the back button in the center of the screen, and to return to the landing page, please use the button in the lower left corner.\n\nPlease do not reply to this email as it has been sent automatically.\nPlease direct all inquiries to the following address.\nAlso, if you received this message in error, please notify [restricted_site_name_en].\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 2 + }, + { + "id": 2, + "mail_subject": "データ利用申請の受付のお知らせ/Your Application was Received", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\n[restricted_institution_name_ja]です。\n[restricted_site_name_ja]をご利用いただいて、ありがとうございます。\n\n下記の利用申請を受け付けました。\n\n申請番号: [restricted_activity_id]\n登録者名: [restricted_fullname]\nメールアドレス: [restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\n[restricted_institution_name_ja]で審査しますので、結果の連絡をお待ちください。\n\nこのメールは自動送信されているので返信しないでください。\nお問い合わせは下記までお願いします。また、このメールに心当たりのない方は、[restricted_institution_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname],\n\nThis is a message from [restricted_institution_name_en].\nThank you for using [restricted_site_name_en].\n\nWe received the below application:\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nYou will be notified once the application is approved. \n\nPlease do not reply to this email as it has been sent automatically.\nPlease direct all inquiries to the following address.\nAlso, if you received this message in error, please notify [restricted_institution_name_en].\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 3, + "mail_subject": "データ利用申請の承認のお願い(ログインユーザー向け)/Request for Approval of Application for Use (for logged in users)", + "mail_body": "[advisor_university_institution]\n[advisor_fullname] 様\n[restricted_site_name_ja]です。\n[advisor_university_institution] [advisor_fullname]様から以下のデータの利用申請がありました。\n\n申請番号:[restricted_activity_id]\n登録者名:[restricted_fullname]\nメールアドレス:[restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nご自身のアカウントにログインして、ワークフローより上記の申請内容をご確認ください。\n「承認」または「却下」のボタンをクリックしてください。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [advisor_fullname],\n\nThis is a message from [restricted_site_name_en].\nWe received the below application from [restricted_university_institution] [restricted_fullname]\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nPlease log in your account and From [Workflow], confirm the above application by clicking on “approve” or “reject”.\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 4, + "mail_subject": "利用申請の承認のお知らせ(ログインユーザー向け)/Your application was approved (for logged in users)", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\nこの度は、[restricted_site_name_ja]をご利用いただきありがとうございます。\n\n下記の利用申請を承認しました。\n\n申請番号:[restricted_activity_id]\n登録者名:[restricted_fullname]\nメールアドレス:[restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nご申請いただいたコンテンツは、次のページよりダウンロードすることができます。\n\n[landing_url]\n\n上記アドレスより[restricted_site_name_ja]にアクセスいただき、ご登録いただいたアカウントでログインをして下さい。\nログインしていただけますと、ダウンロードボタンより申請いただいたデータをダウンロードすることができます。\n\nダウンロードは[restricted_expiration_count][restricted_expiration_count_ja]回まで可能です。\nダウンロード期限は[restricted_expiration_date][restricted_expiration_date_ja]までなので、期限内に必ず保存してください。\nダウンロード回数が上限を超えたり、ダウンロード期限を過ぎると、再申請が必要になります。\n\n今後とも[restricted_site_name_ja]をよろしくお願いします。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname],\n\nThank you for using [restricted_site_name_en].\nYour application below has been approved.\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nThe data can be downloaded from the address below.\n\n[landing_url]\n\nPlease access [restricted_site_name_en] from the above address and login with your registered account.\nIf you logged in, you will be able to download the submitted data from the download button.\n\nYou can download up to [restricted_expiration_count][restricted_expiration_count_en] times.\nThis URL is valid until [restricted_expiration_date][restricted_expiration_date_en], so please be sure to save the file before the deadline.\nIf the number of downloads exceeds the limit or the download deadline has passed, you will need to reapply.\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 5, + "mail_subject": "利用申請の審査結果について(ログインユーザー向け)/The results of the review of your application (for logged in users)", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\nこの度は、[restricted_site_name_ja]をご利用いただきありがとうございます。\n申請いただいた内容をもとに、所内で慎重な検討を重ねましたが、今回はコンテンツの提供を見送らせていただくこととなりました。\n\n申請番号: [restricted_activity_id]\n登録者名: [restricted_fullname]\nメールアドレス: [restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nご申請いただいたにも関わらず、このような返事となり大変申し訳ございません。\n今後とも[restricted_site_name_ja]をよろしくお願いします。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname],\n\nThank you for using [restricted_site_name_en].\nBased on the content of your application, after careful consideration within our office,\nwe have decided not to provide the content at this time.\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nWe are very sorry for this reply despite your application.\nThank you for your continued support of [restricted_site_name_en].\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 6, + "mail_subject": "利用報告の登録のお願い/Request for register Data Usage Report", + "mail_body": "[restricted_site_name_ja]です。\n下記で申請いただいたデータについてダウンロードされたことを確認しました。\n\n申請番号: [restricted_usage_activity_id]\n登録者名: [restricted_fullname]\nメールアドレス: [restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nダウンロードしたデータについて、下記のリンクから利用報告の登録をお願いします。\n\n[usage_report_url]\n\nこのメールは自動送信されているので返信しないでください。\nお問い合わせは下記までお願いします。また、このメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nThis is a message from [restricted_site_name_en].\nWe have confirmed that the dataset which you registered at below has been downloaded.\n\nApplication No.:[restricted_usage_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nFor the downloaded data, please register the Data Usage Report by the link below.\n\n[usage_report_url]\n\nPlease do not reply to this email as it has been sent automatically.\nPlease direct all inquiries to the following address.\nAlso, if you received this message in error, please notify [restricted_site_name_en].\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]\n", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 7, + "mail_subject": "利用報告の登録のお願い/Request for register Data Usage Report", + "mail_body": "[restricted_site_name_ja]です。\n現時点で、下記の利用報告が登録されていません\n\n報告番号:[restricted_activity_id]\n登録者名:[restricted_fullname]\nメールアドレス:[restricted_mail_address]\n所属機関:[restricted_university_institution]\n利用データ:[restricted_data_name]\nデータダウンロード日:[data_download_date]\n\n下記のリンクから利用報告の登録をお願いします。\n\n[usage_report_url]\n\nこのメールは自動送信されているので返信しないでください。\nお問い合わせは下記までお願いします。また、このメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nThis is a message from [restricted_site_name_en].\nAt this time, the Data Usage Report below has not been registered.\n\nUsage Report No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nUsage Dataset:[restricted_data_name]\nDownload date:[data_download_date]\n\nPlease register the Data Usage Report from the link below.\n\n[usage_report_url]\n\nPlease do not reply to this email as it has been sent automatically.\n\nPlease direct all inquiries to the following address.\nAlso, if you received this message in error, please notify [restricted_site_name_en].\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]\n", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 8, + "mail_subject": "データ利用申請の承認のお願い(ゲストユーザー向け)/Request for Approval of Application for Use (for guest user)", + "mail_body": "[advisor_university_institution]\n[advisor_fullname] 様\n\n[restricted_site_name_ja]です。\n[advisor_university_institution] [advisor_fullname]様から以下のデータの利用申請がありました。\n\n申請番号:[restricted_activity_id]\n登録者名:[restricted_fullname]\nメールアドレス:[restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nご自身のアカウントにログインして、ワークフローより上記の申請内容をご確認ください。\n「承認」または「却下」のボタンをクリックしてください。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [advisor_fullname],\n\nThis is a message from [restricted_site_name_en].\nWe received the below application from [restricted_university_institution] [restricted_fullname]\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nPlease log in your account and From [Workflow], confirm the above application by clicking on “approve” or “reject”.\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 9, + "mail_subject": "利用申請の承認のお知らせ(ゲストユーザー向け)/Guest''s application was approved (for guest user)", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\nこの度は、[restricted_site_name_ja]をご利用いただきありがとうございます。\n\n下記の利用申請を承認しました。\n\n申請番号:[restricted_activity_id]\n登録者名:[restricted_fullname]\nメールアドレス:[restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\n申請いただいたコンテンツは、次のリンクアドレスよりダウンロードすることができます。\n\n[restricted_download_link]\n\nリンクアドレスをクリックすると、メールアドレスの入力が必要となります。\n利用申請の際に登録されたメールアドレスを入力頂きますと、申請いただいたコンテンツをダウンロードすることができます。\n\nダウンロードは[restricted_expiration_count][restricted_expiration_count_ja]回まで可能です。\nダウンロード期限は[restricted_expiration_date][restricted_expiration_date_ja]までなので、期限内に必ず保存してください。\nダウンロード回数が上限を超えたり、ダウンロード期限を過ぎると、再申請が必要になります。\n\n今後とも[restricted_site_name_ja]をよろしくお願いします。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname]\n\nThank you for using [restricted_site_name_en].\nYour application below has been approved.\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nThe data can be downloaded from the address below.\n\n[restricted_download_link]\n\nIf you click the address, you will be required to enter your email address.\nYou can download the content you have applied for by entering the email address you registered when applying for use.\n\nYou can download up to [restricted_expiration_count][restricted_expiration_count_en] times.\nThis URL is valid until [restricted_expiration_date][restricted_expiration_date_en], so please be sure to save the file before the deadline.\nIf the number of downloads exceeds the limit or the download deadline has passed, you will need to reapply.\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 10, + "mail_subject": "利用申請の審査結果について(ゲストユーザー向け)/The results of the review of your application (for guest user)", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\nこの度は、[restricted_site_name_ja]をご利用いただきありがとうございます。\n申請いただいた内容をもとに、所内で慎重な検討を重ねましたが、今回はコンテンツの提供を見送らせていただくこととなりました。\n\n申請番号: [restricted_activity_id]\n登録者名: [restricted_fullname]\nメールアドレス: [restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nご申請いただいたにも関わらず、このような返事となり大変申し訳ございません。\n今後とも[restricted_site_name_ja]をよろしくお願いします。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname],\n\nThank you for using [restricted_site_name_en].\nBased on the content of your application, after careful consideration within our office,\nwe have decided not to provide the content at this time.\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nWe are very sorry for this reply despite your application.\nThank you for your continued support of [restricted_site_name_en].\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 11, + "mail_subject": "シークレットURL提供のお知らせ/Notice of providing secret URL", + "mail_body": "\nシークレットURL機能利用者 様\n\n[restricted_data_name]に登録されている[file_name]のシークレットURLを作成しました。\n\n以下のURLからダウンロードが可能です。\n\nダウンロードURL:\n[secret_url]\n\n有効期限:[restricted_expiration_date]まで有効です\nダウンロード回数:[restricted_download_count]回まで可能です。\n\n*本URLは、当該コンテンツを特定の方に共有することを前提として発行されています。\n*セキュリティ保護のため、第三者への転送・共有は固くご遠慮ください。\n*このメールは自動送信されているので返信しないでください。\n*このメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear Secret URL Feature User,\n\nA secret URL has been generated for the file [file_name] registered under [restricted_data_name].\n\nYou can download the file from the link below:\n\nDownload URL: \n[secret_url]\n\nExpiration Date: Valid until [restricted_expiration_date]\nDownload Limit: Up to [restricted_download_count] downloads\n\nPlease note the following:\n\n* This URL is issued on the premise that the content will be shared only with specific intended recipients.\n* For security reasons, please refrain from forwarding or sharing this URL with third parties.\n* This email was sent automatically; please do not reply.\n* If you received this message in error, please notify the [restricted_site_name_en].\n\n[restricted_site_name_en]:[restricted_site_url]\nContact: [restricted_site_mail]", + "default_mail": true, + "genre_id": 1 + }, + { + "id": 12, + "mail_subject": "利用申請のお知らせ / Notice of application for use", + "mail_body": "データ提供者 様\n\n[restricted_institution_name_ja]です。\n[restricted_fullname]様から、ご登録いただいたコンテンツに対して、下記のデータの利用申請がありましたので報告いたします。\n\n申請番号: [restricted_activity_id]\n登録者名: [restricted_fullname]\nメールアドレス: [restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nこのメールは自動送信されているので返信しないでください。\nお問い合わせは下記までお願いします。また、このメールに心当たりのない方は、[restricted_institution_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear Data Provider,\n\nThis is a message from [restricted_institution_name_en].\nWe received the below application from [restricted_fullname].\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nPlease do not reply to this email as it has been sent automatically.\nPlease direct all inquiries to the following address.\nAlso, if you received this message in error, please notify [restricted_institution_name_en].\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 13, + "mail_subject": "利用報告の受付のお知らせ/Your Application was Received", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\n[restricted_institution_name_ja]です。\n[restricted_site_name_ja]をご利用いただいて、ありがとうございます。\n\n下記の利用申請を受け付けました。\n\n申請番号: [restricted_activity_id]\n登録者名: [restricted_fullname]\nメールアドレス: [restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\n[restricted_institution_name_ja]で審査しますので、結果の連絡をお待ちください。\n\nこのメールは自動送信されているので返信しないでください。\nお問い合わせは下記までお願いします。また、このメールに心当たりのない方は、[restricted_institution_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname],\n\nThis is a message from [restricted_institution_name_en].\nThank you for using [restricted_site_name_en].\n\nWe received the below application:\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nYou will be notified once the application is approved. \n\nPlease do not reply to this email as it has been sent automatically.\nPlease direct all inquiries to the following address.\nAlso, if you received this message in error, please notify [restricted_institution_name_en].\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 14, + "mail_subject": "利用報告の承認のお知らせ/Guest's application was approved (for guest user)", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\nこの度は、[restricted_site_name_ja]をご利用いただきありがとうございます。\n\n下記の利用申請を承認しました。\n\n申請番号:[restricted_activity_id]\n登録者名:[restricted_fullname]\nメールアドレス:[restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\n申請いただいたコンテンツは、次のリンクアドレスよりダウンロードすることができます。\n\n[restricted_download_link]\n\nリンクアドレスをクリックすると、メールアドレスの入力が必要となります。\n利用申請の際に登録されたメールアドレスを入力頂きますと、申請いただいたコンテンツをダウンロードすることができます。\n\nダウンロードは[restricted_expiration_date_ja]まで可能です。\nダウンロード期限は[restricted_expiration_date_ja]までなので、期限内に必ず保存してください。\nダウンロード回数が上限を超えたり、ダウンロード期限を過ぎると、再申請が必要になります。\n\n今後とも[restricted_site_name_ja]をよろしくお願いします。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname]\n\nThank you for using [restricted_site_name_en].\nYour application below has been approved.\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nThe data can be downloaded from the address below.\n\n[restricted_download_link]\n\nIf you click the address, you will be required to enter your email address.\nYou can download the content you have applied for by entering the email address you registered when applying for use.\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + }, + { + "id": 15, + "mail_subject": "利用報告の審査結果について/The results of the review of your application (for guest user)", + "mail_body": "[restricted_university_institution]\n[restricted_fullname] 様\n\nこの度は、[restricted_site_name_ja]をご利用いただきありがとうございます。\n申請いただいた内容をもとに、所内で慎重な検討を重ねましたが、今回はコンテンツの提供を見送らせていただくこととなりました。\n\n申請番号: [restricted_activity_id]\n登録者名: [restricted_fullname]\nメールアドレス: [restricted_mail_address]\n所属機関:[restricted_university_institution]\n研究題目:[restricted_research_title]\n申請データ:[restricted_data_name]\n申請年月日:[restricted_application_date]\n\nご申請いただいたにも関わらず、このような返事となり大変申し訳ございません。\n今後とも[restricted_site_name_ja]をよろしくお願いします。\n\nこのメールは自動送信されているので返信しないでください。\nこのメールに心当たりのない方は、[restricted_site_name_ja]までご連絡ください。\n\n[restricted_site_name_ja]:[restricted_site_url]\n問い合わせ窓口:[restricted_site_mail]\n\n----------------------------------------------------------------------------------\n\nDear [restricted_fullname],\n\nThank you for using [restricted_site_name_en].\nBased on the content of your application, after careful consideration within our office,\nwe have decided not to provide the content at this time.\n\nApplication No.:[restricted_activity_id]\nName:[restricted_fullname]\nE-mail:[restricted_mail_address]\nAffiliation:[restricted_university_institution]\nTitle of research:[restricted_research_title]\nDataset requested :[restricted_data_name]\nApplication date:[restricted_application_date]\n\nWe are very sorry for this reply despite your application.\nThank you for your continued support of [restricted_site_name_en].\n\nPlease do not reply to this email as it has been sent automatically.\nIf you received this message in error, please notify the [restricted_site_name_en]\n\n[restricted_site_name_en]:[restricted_site_url]\nE-mail:[restricted_site_mail]", + "default_mail": true, + "genre_id": 3 + } + ], + "admin_settings": { + "name": "restricted_access", + "settings": { + "error_msg": { + "key": "", + "content": { + "en": { + "content": "This data is not available for this user" + }, + "ja": { + "content": "このデータは利用できません(権限がないため)。" + } + } + }, + "password_enable": true, + "item_application": { + "application_item_types": [], + "item_application_enable": true + }, + "display_request_form": true, + "terms_and_conditions": [], + "content_file_download": { + "download_limit": 10, + "expiration_date": 30, + "download_limit_unlimited_chk": false, + "expiration_date_unlimited_chk": false + }, + "secret_URL_file_download": { + "secret_enable": true, + "secret_download_limit": 10, + "secret_expiration_date": 30, + "max_secret_download_limit": 10, + "max_secret_expiration_date": 30, + "secret_download_limit_unlimited_chk": false, + "secret_expiration_date_unlimited_chk": false + }, + "edit_mail_templates_enable": true, + "usage_report_workflow_access": { + "expiration_date_access": 500, + "expiration_date_access_unlimited_chk": false + }, + "preview_workflow_approval_enable": true + } + } +} \ No newline at end of file diff --git a/tools/update_restricted_access_property.py b/tools/update_restricted_access_property.py index cb384fba36..49674ee5b0 100644 --- a/tools/update_restricted_access_property.py +++ b/tools/update_restricted_access_property.py @@ -1,4 +1,5 @@ import json +import logging import sys import traceback @@ -15,6 +16,19 @@ def main(target_item_type_property_id, update_type): target_item_type_property_id (int): The ID of the target item type property to update. update_type (str): The type of update to perform, either "enable" or "disable". """ + # for logging set to info level + format = '[%(asctime)s,%(msecs)03d][%(levelname)s] \033[32mweko\033[0m - '\ + '%(message)s [file %(pathname)s line %(lineno)d in %(funcName)s]' + datefmt = '%Y-%m-%d %H:%M:%S' + formatter = logging.Formatter(fmt=format, datefmt=datefmt) + + current_app.logger.setLevel("INFO") + if current_app.logger.handlers: + # if app.logger has handlers, set level and formatter + for h in current_app.logger.handlers: + h.setLevel("INFO") + h.setFormatter(formatter) + try: with db.session.begin_nested(): update_item_type_property(target_item_type_property_id, update_type) @@ -25,6 +39,7 @@ def main(target_item_type_property_id, update_type): current_app.logger.error(str(ex)) current_app.logger.error("Failed to update restricted access property.") current_app.logger.error(traceback.format_exc()) + sys.exit(1) def update_item_type_property(target_item_type_property_id, update_type): """Update the schema, form, and forms of a specific item type property. diff --git a/tools/verify_restricted_records.py b/tools/verify_restricted_records.py new file mode 100644 index 0000000000..2a832a5aec --- /dev/null +++ b/tools/verify_restricted_records.py @@ -0,0 +1,721 @@ +import json +import logging +import os +import sys +import traceback + +from flask import current_app + +from invenio_accounts.models import Role +from invenio_mail.models import MailTemplateGenres, MailTemplates +from weko_admin.models import AdminSettings +from weko_index_tree.models import Index +from weko_records.api import ItemTypeNames, ItemTypes +from weko_records.models import ItemTypeMapping, ItemTypeProperty +from weko_workflow.api import WorkFlow +from weko_workflow.models import FlowAction, FlowDefine, WorkflowRole + +VERIFY_FILE_PATH = "verify_table.json" + +def verify_item_type_name(expected_records): + """Verify item_type_name records. + + Verify that the item_type_name records for restricted access + exist and match. + + Args: + expected_records (list): List of expected item_type_name records, + each record is a dict with keys corresponding to the fields + of item_type_name. + + Returns: + int: The count of item_type_name records that match the expected records. + """ + current_app.logger.info("Verifying item_type_name records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = ItemTypeNames.get_all_by_id(verify_ids) + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + if getattr(actual, key, None) != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{getattr(actual, key, None)}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_item_type(expected_records): + """Verify item_type records. + + Verify that the item_type records for restricted access + exist and match. + + Args: + expected_records (list): List of expected item_type records, + each record is a dict with keys corresponding to the fields + of item_type. + + Returns: + int: The count of item_type records that match the expected records. + """ + current_app.logger.info("Verifying item_type records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = ItemTypes.get_records(verify_ids) + parse_columns = ["schema", "form", "render"] + correct_count = 0 + + for expected in expected_records: + actual = next((record.model for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + if key in parse_columns: + expected_value = expected[key] + actual_value = getattr(actual, key) + if isinstance(actual_value, (dict, list)): + actual_value = json.dumps(actual_value, ensure_ascii=False).replace("'", "''") + if actual_value != expected_value: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{actual_value}'") + is_match = False + else: + if getattr(actual, key, None) != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{getattr(actual, key, None)}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_item_type_mapping(expected_records): + """Verify item_type_mapping records. + + Verify that the item_type_mapping records for restricted access + exist and match. + + Args: + expected_records (list): List of expected item_type_mapping records, + each record is a dict with keys corresponding to the fields + of item_type_mapping. + + Returns: + int: The count of item_type_mapping records that match the expected records. + """ + current_app.logger.info("Verifying item_type_mapping records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = ItemTypeMapping.query.filter(ItemTypeMapping.id.in_(verify_ids)).all() + parse_columns = ["mapping"] + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + if key in parse_columns: + expected_value = expected[key] + actual_value = getattr(actual, key, None) + if isinstance(actual_value, (dict, list)): + actual_value = json.dumps(actual_value, ensure_ascii=False).replace("'", "''") + if actual_value != expected_value: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{actual_value}'") + is_match = False + else: + if getattr(actual, key, None) != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{getattr(actual, key, None)}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_item_type_property(expected_records): + """Verify item_type_property records. + + Verify that the item_type_property records for restricted access + exist and match. + + Args: + expected_records (list): List of expected item_type_property records, + each record is a dict with keys corresponding to the fields + of item_type_property. + + Returns: + int: The count of item_type_property records that match the expected records. + """ + current_app.logger.info("Verifying item_type_property records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = ItemTypeProperty.query.filter(ItemTypeProperty.id.in_(verify_ids)).all() + parse_columns = ["schema", "form", "forms"] + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + if key in parse_columns: + expected_value = expected[key] + actual_value = getattr(actual, key, None) + if isinstance(actual_value, (dict, list)): + actual_value = json.dumps(actual_value, ensure_ascii=False).replace("'", "''") + if actual_value != expected_value: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{actual_value}'") + is_match = False + else: + if getattr(actual, key, None) != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{getattr(actual, key, None)}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_accounts_role(expected_records): + """Verify accounts_role records. + + Verify that the accounts_role records for restricted access + exist and match. + + Args: + expected_records (list): List of expected accounts_role records, + each record is a dict with keys corresponding to the fields + of accounts_role. + + Returns: + int: The count of accounts_role records that match the expected records. + """ + current_app.logger.info("Verifying accounts_role records...") + + verify_names = [record["name"] for record in expected_records] + actual_records = Role.query.filter(Role.name.in_(verify_names)).all() + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.name == expected["name"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with name {expected['name']} not found.") + continue + + for key in expected.keys(): + if getattr(actual, key, None) != expected[key]: + current_app.logger.warning(f"Mismatch for name {expected['name']} on field '{key}': " + f"expected '{expected[key]}', got '{getattr(actual, key, None)}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with name {expected['name']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_index(expected_records): + """Verify index records. + + Verify that the index records for restricted access + exist and match. + + Args: + expected_records (list): List of expected index records, + each record is a dict with keys corresponding to the fields + of index. + + Returns: + int: The count of index records that match the expected records. + """ + current_app.logger.info("Verifying index records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = Index.query.filter(Index.id.in_(verify_ids)).all() + correct_count = 0 + + general_role = Role.query.filter_by(name="General").first() + general_id = general_role.id if general_role else 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + expected_value = expected[key] + if type(expected[key]) == str and "xxx" in expected[key]: + expected_value = expected[key].replace("xxx", str(general_id)) + if getattr(actual, key, None) != expected_value: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected_value}', got '{getattr(actual, key, None)}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_workflow_flow_define(expected_records): + """Verify workflow_flow_define records. + + Verify that the workflow_flow_define records for restricted access + exist and match. + + Args: + expected_records (list): List of expected workflow_flow_define records, + each record is a dict with keys corresponding to the fields + of workflow_flow_define. + + Returns: + int: The count of workflow_flow_define records that match the expected records. + """ + current_app.logger.info("Verifying workflow_flow_define records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = FlowDefine.query.filter(FlowDefine.id.in_(verify_ids)).all() + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + actual_value = getattr(actual, key, None) + if key == "flow_id": + actual_value = str(actual_value) + if actual_value != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{actual_value}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_workflow_flow_action(expected_records): + """Verify workflow_flow_action records. + + Verify that the workflow_flow_action records for restricted access + exist and match. + + Args: + expected_records (list): List of expected workflow_flow_action records, + each record is a dict with keys corresponding to the fields + of workflow_flow_action. + + Returns: + int: The count of workflow_flow_action records that match the expected records. + """ + current_app.logger.info("Verifying workflow_flow_action records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = FlowAction.query.filter(FlowAction.id.in_(verify_ids)).all() + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + actual_value = getattr(actual, key, None) + if key == "flow_id": + actual_value = str(actual_value) + if actual_value != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{actual_value}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_workflow_workflow(expected_records): + """Verify workflow_workflow records. + + Verify that the workflow_workflow records for restricted access + exist and match. + + Args: + expected_records (list): List of expected workflow_workflow records, + each record is a dict with keys corresponding to the fields + of workflow_workflow. + + Returns: + int: The count of workflow_workflow records that match the expected records. + """ + current_app.logger.info("Verifying workflow_workflow records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = WorkFlow.get_workflow_by_ids(verify_ids) + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + actual_value = getattr(actual, key, None) + if key == "flows_id": + actual_value = str(actual_value) + if actual_value != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{actual_value}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_workflow_userrole(expected_records): + """Verify workflow_userrole records. + + Verify that the workflow_userrole records for restricted access + exist and match. + + Args: + expected_records (list): List of expected workflow_userrole records, + each record is a dict with keys corresponding to the fields + of workflow_userrole. + + Returns: + int: The count of workflow_userrole records that match the expected records. + """ + current_app.logger.info("Verifying workflow_userrole records...") + + verify_ids = [record["workflow_id"] for record in expected_records] + actual_records = WorkflowRole.query.filter(WorkflowRole.workflow_id.in_(verify_ids)).all() + correct_count = 0 + + general_role = Role.query.filter_by(name="General").first() + general_id = general_role.id if general_role else 0 + + for expected in expected_records: + expected_role_id = expected["role_id"] + if type(expected_role_id) == str and "xxx" in expected_role_id: + expected_role_id = int(expected_role_id.replace("xxx", str(general_id))) + actual = next((record for record in actual_records + if record.workflow_id == expected["workflow_id"] + and record.role_id == expected_role_id), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with workflow_id {expected['workflow_id']} " + f"and role_id {expected_role_id} not found.") + continue + + for key in expected.keys(): + expected_value = expected[key] + if key == "role_id" and type(expected_value) == str and "xxx" in expected_value: + expected_value = int(expected_value.replace("xxx", str(general_id))) + actual_value = getattr(actual, key, None) + if actual_value != expected_value: + current_app.logger.warning(f"Mismatch for workflow_id {expected['workflow_id']} " + f"and role_id {expected_role_id} on field '{key}': " + f"expected '{expected_value}', got '{actual_value}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with workflow_id {expected['workflow_id']} " + f"and role_id {expected_role_id} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_mail_template_genres(expected_records): + """Verify mail_template_genres records. + + Verify that the mail_template_genres records for restricted access + exist and match. + + Args: + expected_records (list): List of expected mail_template_genres records, + each record is a dict with keys corresponding to the fields + of mail_template_genres. + + Returns: + int: The count of mail_template_genres records that match the expected records. + """ + current_app.logger.info("Verifying mail_template_genres records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = MailTemplateGenres.query.filter(MailTemplateGenres.id.in_(verify_ids)).all() + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + if getattr(actual, key, None) != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{getattr(actual, key, None)}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_mail_templates(expected_records): + """Verify mail_templates records. + + Verify that the mail_templates records for restricted access + exist and match. + + Args: + expected_records (list): List of expected mail_templates records, + each record is a dict with keys corresponding to the fields + of mail_templates. + + Returns: + int: The count of mail_templates records that match the expected records. + """ + current_app.logger.info("Verifying mail_templates records...") + + verify_ids = [record["id"] for record in expected_records] + actual_records = MailTemplates.query.filter(MailTemplates.id.in_(verify_ids)).all() + correct_count = 0 + + for expected in expected_records: + actual = next((record for record in actual_records + if record.id == expected["id"]), None) + is_match = True + if not actual: + current_app.logger.warning(f"Record with id {expected['id']} not found.") + continue + + for key in expected.keys(): + if key == "genre_id": + actual_value = getattr(actual, "mail_genre_id", None) + else: + actual_value = getattr(actual, key, None) + if actual_value != expected[key]: + current_app.logger.warning(f"Mismatch for id {expected['id']} on field '{key}': " + f"expected '{expected[key]}', got '{actual_value}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with id {expected['id']} verified successfully.") + correct_count += 1 + + return correct_count + + +def verify_admin_settings(expected_records): + """Verify admin_settings records. + + Verify that the admin_settings records for restricted access + exist and match. + + Args: + expected_records (list): List of expected admin_settings records, + each record is a dict with keys corresponding to the fields + of admin_settings. + + Returns: + int: The count of admin_settings records that match the expected records. + """ + def _verify_value(expected, actual, parent_key=""): + """Recursively verify expected and actual values, handling nested dicts. + + Args: + expected: The expected value, which can be a dict or a simple value. + actual: The actual value to compare against the expected value. + parent_key: The key path leading to the current value, used for logging. + + Returns: + bool: True if the actual value matches the expected value, False otherwise. + """ + if isinstance(expected, dict): + for key in expected.keys(): + expected_value = expected[key] + if isinstance(actual, dict): + actual_value = actual.get(key, None) + else: + actual_value = getattr(actual, key, None) + full_key = f"{parent_key}.{key}" if parent_key else key + if isinstance(expected_value, dict): + if not _verify_value(expected_value, actual_value, full_key): + return False + else: + if actual_value != expected_value: + current_app.logger.warning(f"Mismatch for name {expected_records['name']} on field '{full_key}': " + f"expected '{expected_value}', got '{actual_value}'") + return False + else: + if actual != expected: + current_app.logger.warning(f"Mismatch for name {expected_records['name']} on field '{parent_key}': " + f"expected '{expected}', got '{actual}'") + return False + return True + + current_app.logger.info("Verifying admin_settings records...") + + verify_name = expected_records["name"] + actual_records = AdminSettings.get(verify_name) + + if not actual_records: + current_app.logger.warning(f"Record with name {verify_name} not found.") + return 0 + + actual = actual_records + is_match = True + for key in expected_records["settings"].keys(): + expected_value = expected_records["settings"][key] + actual_value = getattr(actual, key, None) + if isinstance(expected_value, dict): + if not _verify_value(expected_value, actual_value, key): + is_match = False + else: + if actual_value != expected_value: + current_app.logger.warning(f"Mismatch for name {verify_name} on field '{key}': " + f"expected '{expected_value}', got '{actual_value}'") + is_match = False + + if is_match: + current_app.logger.info(f"Record with name {verify_name} verified successfully.") + return 1 + return 0 + + +def main(): + """Main function to verify records.""" + def _put_status_list(table_name, expected_count, actual_count): + """Put table name into corresponding status list based on expected and actual count. + + Args: + table_name (str): The name of the table being verified. + expected_count (int): The count of expected records for the table. + actual_count (int): The count of actual records that match the expected records. + """ + if actual_count == 0: + tables_none.append(table_name) + elif actual_count < expected_count: + tables_partial.append(table_name) + elif actual_count == expected_count: + tables_all.append(table_name) + + # for logging set to info level + format = '[%(asctime)s,%(msecs)03d][%(levelname)s] \033[32mweko\033[0m - '\ + '%(message)s [file %(pathname)s line %(lineno)d in %(funcName)s]' + datefmt = '%Y-%m-%d %H:%M:%S' + formatter = logging.Formatter(fmt=format, datefmt=datefmt) + + current_app.logger.setLevel("INFO") + if current_app.logger.handlers: + # if app.logger has handlers, set level and formatter + for h in current_app.logger.handlers: + h.setLevel("INFO") + h.setFormatter(formatter) + + args = sys.argv + if len(args) == 2: + enable_flag = args[1] + with open(os.path.join("tools/switch_restricted_access", + str(enable_flag), VERIFY_FILE_PATH), 'r') as f: + expected_records = json.load(f) + + tables_none = [] + tables_partial = [] + tables_all = [] + + # Iterate JSON keys and call corresponding verifier function named verify_ + for key, records in expected_records.items(): + func_name = f"verify_{key}" + verifier = globals().get(func_name) + if not verifier or not callable(verifier): + current_app.logger.warning(f"No verifier implemented for key '{key}'") + continue + try: + result = verifier(records) + # If verifier returns matched count, update status lists + if isinstance(result, int): + expected_count = len(records) if isinstance(records, list) else 1 + _put_status_list(key, expected_count, result) + except Exception as ex: + current_app.logger.error(str(ex)) + current_app.logger.exception(f"Error while verifying '{key}'") + current_app.logger.error(traceback.format_exc()) + + current_app.logger.info(f"Verification completed. \n" + f"Tables with all records correct: {tables_all}, \n" + f"Tables with some records correct: {tables_partial}, \n" + f"Tables with no records correct: {tables_none}.") + + +if __name__ == "__main__": + main() diff --git a/tools/verify_restricted_update.sh b/tools/verify_restricted_update.sh new file mode 100755 index 0000000000..07267814d2 --- /dev/null +++ b/tools/verify_restricted_update.sh @@ -0,0 +1,44 @@ +#!/usr/bin/env bash +set -euo pipefail +IFS=$'\n\t' +trap 'rc=$?; echo "Error: ${BASH_COMMAND} (line ${LINENO}) exited with ${rc}" >&2; exit ${rc}' ERR + +SETTING_FILE="$1" +ENABLE_FLAG="$2" + +declare -A expected=( + [WEKO_ADMIN_RESTRICTED_ACCESS_DISPLAY_FLAG]=$ENABLE_FLAG + [WEKO_ADMIN_DISPLAY_RESTRICTED_SETTINGS]=$ENABLE_FLAG + [WEKO_RECORDS_UI_RESTRICTED_API]=$ENABLE_FLAG + [WEKO_ITEMS_UI_PROXY_POSTING]=$ENABLE_FLAG + [WEKO_ITEMTYPES_UI_FORCED_IMPORT_ENABLED]=$ENABLE_FLAG + [WEKO_INDEX_TREE_SHOW_MODAL]=$ENABLE_FLAG + [WEKO_USERPROFILES_CUSTOMIZE_ENABLED]=$ENABLE_FLAG + [INVENIO_MAIL_ADDITIONAL_RECIPIENTS_ENABLED]=$ENABLE_FLAG +) + +fail=0 + +if [ ! -f "$SETTING_FILE" ]; then + echo "Error: ${SETTING_FILE} not found" >&2 + exit 2 +fi + +echo "Checking ${SETTING_FILE}" +for key in "${!expected[@]}"; do + val=${expected[$key]} + if grep -Eiq "^${key} *= *${val}$" "$SETTING_FILE"; then + echo "OK: ${key} = ${val} in ${SETTING_FILE}" + else + echo "FAIL: ${key} != ${val} in ${SETTING_FILE}" >&2 + fail=1 + fi +done + +if [ "${fail}" -ne 0 ]; then + echo "Verification failed" >&2 + exit 1 +fi + +echo "All checks passed" +exit 0