diff --git a/modules/invenio-records-rest/requirements2.txt b/modules/invenio-records-rest/requirements2.txt index 89d608799e..9630f335f8 100644 --- a/modules/invenio-records-rest/requirements2.txt +++ b/modules/invenio-records-rest/requirements2.txt @@ -248,6 +248,7 @@ pyparsing==3.1.4 pyPEG2==2.15.2 pyproject-api==1.7.1 pytest==7.4.4 +pytest_mock==3.6.1 python-dateutil==2.9.0.post0 python-editor==1.0.3 python-geoip==1.2 diff --git a/modules/invenio-records-rest/tests/__init__.py b/modules/invenio-records-rest/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/modules/invenio-records-rest/tests/conftest.py b/modules/invenio-records-rest/tests/conftest.py index 613d748969..5de0781ac8 100644 --- a/modules/invenio-records-rest/tests/conftest.py +++ b/modules/invenio-records-rest/tests/conftest.py @@ -19,11 +19,11 @@ import uuid import pytest -from mock import patch +from unittest.mock import patch, MagicMock from flask import Flask, g, url_for from flask_login import LoginManager, UserMixin -from helpers import create_record +from .helpers import create_record from invenio_config import InvenioConfigDefault from invenio_access.models import ActionRoles from invenio_accounts import InvenioAccounts @@ -49,12 +49,14 @@ from invenio_search.engine import dsl from sqlalchemy_utils.functions import create_database, database_exists from weko_admin.models import AdminSettings,FacetSearchSetting +from weko_records.api import ItemTypes from weko_records.models import ItemTypeName, ItemType, ItemTypeMapping from weko_redis.redis import RedisConnection from weko_records_ui.config import ( WEKO_PERMISSION_ROLE_COMMUNITY, WEKO_PERMISSION_SUPER_ROLE_USER, - WEKO_RECORDS_UI_LICENSE_DICT + WEKO_RECORDS_UI_LICENSE_DICT, + WEKO_RECORDS_UI_EMAIL_ITEM_KEYS ) from weko_index_tree.models import Index @@ -72,7 +74,8 @@ class TestSearch(RecordsSearch): class Meta: """Test configuration.""" - index = "invenio-records-rest" + # index = "invenio-records-rest" + index = "test-weko-item-v1.0.0" def __init__(self, **kwargs): """Add extra options.""" @@ -91,6 +94,32 @@ def flush_and_wait(self): """Flush index and wait until operation is fully done.""" current_search.flush_and_refresh(self.search_class.Meta.index) +@pytest.fixture() +def mock_itemtypes(mocker): + """Mock the ItemTypes.get_record method to return a mock object.""" + mock_record = MagicMock() + mock_record.model.render = { + "meta_fix": { + "meta_fix_9999": "meta_fix_9999", + "item_type_id": { + "option": { + "showlist": True, + "hidden": False, + }, + }, + }, + "meta_list": { + "meta_list_9999": "meta_list_9999", + } + } + mock_item_type = MagicMock() + mock_item_type.render = mock_record.model.render + + mocker.patch('weko_items_ui.utils.ItemTypes.get_record', return_value=mock_record) + mocker.patch('weko_items_ui.utils.ItemTypes.get_by_id', return_value=mock_item_type) + + return mock_record + @pytest.fixture(scope="session") def search_class(): @@ -154,7 +183,7 @@ def test_mytest(app, db, es): SEARCH_HOSTS=os.environ.get( 'SEARCH_HOST', 'opensearch' ), - SEARCH_CLIENT_CONFIG={"http_auth":(os.environ['INVENIO_OPENSEARCH_USER'],os.environ['INVENIO_OPENSEARCH_PASS']),"use_ssl":True, "verify_certs":False}, + SEARCH_CLIENT_CONFIG={"http_auth":(os.environ.get('INVENIO_OPENSEARCH_USER', 'invenio'),os.environ.get('INVENIO_OPENSEARCH_PASS', 'openpass123!')),"use_ssl":True, "verify_certs":False}, RECORDS_REST_ENDPOINTS=copy.deepcopy(config.RECORDS_REST_ENDPOINTS), RECORDS_REST_DEFAULT_CREATE_PERMISSION_FACTORY=None, RECORDS_REST_DEFAULT_DELETE_PERMISSION_FACTORY=None, @@ -162,7 +191,7 @@ def test_mytest(app, db, es): RECORDS_REST_DEFAULT_UPDATE_PERMISSION_FACTORY=None, RECORDS_REST_DEFAULT_RESULTS_SIZE=10, #RECORDS_REST_DEFAULT_SEARCH_INDEX=search_class.Meta.index, - RECORDS_REST_DEFAULT_SEARCH_INDEX="test-weko", + RECORDS_REST_DEFAULT_SEARCH_INDEX="", RECORDS_REST_FACETS={ #search_class.Meta.index: { "test-weko": { @@ -174,6 +203,14 @@ def test_mytest(app, db, es): #"stars": terms_filter("stars"), "control_number":terms_filter("control_number") }, + }, + "invenio-records-rest": { # 追加 + "aggs": { + "stars": {"terms": {"field": "stars"}} + }, + "post_filters": { + "control_number": terms_filter("control_number") + }, } }, RECORDS_REST_SORT_OPTIONS={ @@ -187,8 +224,9 @@ def test_mytest(app, db, es): ) }, SERVER_NAME="localhost:5000", - SEARCH_INDEX_PREFIX="test-", - SEARCH_UI_SEARCH_INDEX="{}-weko".format("test"), + # SEARCH_INDEX_PREFIX="test-", + # SEARCH_UI_SEARCH_INDEX="{}-weko".format("test"), + SEARCH_UI_SEARCH_INDEX="", CACHE_TYPE="redis", CACHE_REDIS_DB=0, CACHE_REDIS_HOST="redis", @@ -202,6 +240,7 @@ def test_mytest(app, db, es): WEKO_PERMISSION_ROLE_COMMUNITY=WEKO_PERMISSION_ROLE_COMMUNITY, EMAIL_DISPLAY_FLG = True, WEKO_RECORDS_UI_LICENSE_DICT=WEKO_RECORDS_UI_LICENSE_DICT, + WEKO_RECORDS_UI_EMAIL_ITEM_KEYS=WEKO_RECORDS_UI_EMAIL_ITEM_KEYS, ) #app.config["RECORDS_REST_ENDPOINTS"]["recid"]["search_class"] = \ @@ -364,7 +403,7 @@ def indexed_records(app, search_index, test_records): indexer=RecordIndexer() for pid, record in test_records: indexer.index_by_id(record.id) - current_search.flush_and_refresh(index='test-weko') + current_search.flush_and_refresh(index="*") yield test_records @@ -381,6 +420,7 @@ def record_data_with_itemtype(id, index_path): "item_title":"test_item{}".format(id), "author_link":[], "item_type_id":"15", + # "item_type_id":"123", "publish_date":"2023-10-25", "publish_status":"0", "weko_shared_id":-1, @@ -401,7 +441,7 @@ def record_data10(indexes): def register_record(id, indexer, index_path): record_data = record_data_with_itemtype(id, index_path) pid, record = create_record(record_data) - index, doc_type = indexer.record_to_index(record) + index = indexer.record_to_index(record) es_data = { "title":record_data["title"], "control_number": str(id), @@ -416,7 +456,6 @@ def register_record(id, indexer, index_path): version=record.revision_id, version_type=indexer._version_type, index=index, - doc_type=doc_type, body=es_data ) return pid, record @@ -431,7 +470,7 @@ def indexed_10records(app, db, search_index, item_type, indexes): pid, record = register_record(i, indexer, index_path) result.append((pid, record)) db.session.commit() - current_search.flush_and_refresh(index="test-weko") + current_search.flush_and_refresh(index="*") return result @pytest.fixture() @@ -444,12 +483,12 @@ def indexed_100records(app, db, search_index, item_type,indexes): pid, record = register_record(i, indexer, index_path) result.append((pid,record)) db.session.commit() - current_search.flush_and_refresh(index="test-weko") + current_search.flush_and_refresh(index="*") return result -@pytest.yield_fixture(scope="session") +@pytest.fixture(scope="session") def test_patch(): """A JSON patch.""" yield [{"op": "replace", "path": "/year", "value": 1985}] @@ -576,7 +615,7 @@ def facet_search(db): db.session.add(control_number) db.session.commit() -@pytest.yield_fixture() +@pytest.fixture() def aggs_and_facet(redis_connect, facet_search): test_redis_key = "test_facet_search_query_has_permission" redis_connect.delete(test_redis_key) diff --git a/modules/invenio-records-rest/tests/data/item-v1.0.0.json b/modules/invenio-records-rest/tests/data/item-v1.0.0.json new file mode 100644 index 0000000000..2694085dcc --- /dev/null +++ b/modules/invenio-records-rest/tests/data/item-v1.0.0.json @@ -0,0 +1,167 @@ +{ + "settings": { + "number_of_shards": 1, + "number_of_replicas": 1, + "max_result_window": 1000000, + "analysis": { + "tokenizer": { + "ja_tokenizer": { + "type": "kuromoji_tokenizer", + "mode": "search" + }, + "ngram_tokenizer": { + "type": "nGram", + "min_gram": 2, + "max_gram": 3, + "token_chars": [ + "letter", + "digit" + ] + } + }, + "analyzer": { + "ja_analyzer": { + "tokenizer": "ja_tokenizer", + "filter": [ + "kuromoji_baseform", + "kuromoji_part_of_speech", + "cjk_width", + "stop", + "kuromoji_stemmer", + "lowercase" + ] + }, + "ngram_analyzer": { + "type": "custom", + "char_filter": [ + "html_strip" + ], + "tokenizer": "ngram_tokenizer", + "filter": [ + "cjk_width", + "lowercase" + ] + }, + "wk_analyzer": { + "type": "custom", + "char_filter": [ + "html_strip" + ], + "tokenizer": "standard", + "filter": [ + "lowercase", + "cjk_width" + ] + }, + "paths": { + "tokenizer": "path_hierarchy" + } + } + } + }, + "mappings": { + "properties": { + "pk_id": { + "type": "keyword" + }, + "authorNameInfo": { + "type": "object", + "properties": { + "familyName": { + "type": "text" + }, + "firstName": { + "type": "text" + }, + "fullName": { + "type": "text", + "fields": { + "raw": { + "type": "keyword", + "index": true + } + } + }, + "language": { + "type": "text", + "index": false + }, + "nameFormat": { + "type": "text", + "index": false + }, + "nameShowFlg": { + "type": "boolean" + } + } + }, + "authorIdInfo": { + "type": "object", + "properties": { + "authorId": { + "type": "text" + }, + "idType": { + "type": "text", + "index": false + }, + "authorIdShowFlg": { + "type": "boolean" + } + } + }, + "emailInfo": { + "type": "object", + "properties": { + "email": { + "type": "text", + "fields": { + "raw": { + "type": "keyword", + "index": true + } + } + } + } + }, + "affiliationInfo": { + "type": "object", + "properties": { + "identifierInfo": { + "type": "object", + "properties": { + "affiliationId": { + "type": "text" + }, + "affiliationIdType": { + "type": "text", + "index": false + }, + "identifierShowFlg": { + "type": "boolean" + } + } + }, + "affiliationNameInfo": { + "type": "object", + "properties": { + "affiliationName": { + "type": "text", + "index": false + }, + "affiliationNameLang": { + "type": "text" + }, + "affiliationNameShowFlg": { + "type": "boolean" + } + } + } + } + }, + "is_deleted": { + "type": "boolean" + } + } + } +} diff --git a/modules/invenio-records-rest/tests/data/itemtype_render.json b/modules/invenio-records-rest/tests/data/itemtype_render.json new file mode 100644 index 0000000000..cd700be275 --- /dev/null +++ b/modules/invenio-records-rest/tests/data/itemtype_render.json @@ -0,0 +1,19297 @@ +{ + "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_1617186331708": { + "title": "Title", + "option": { + "crtf": true, + "hidden": false, + "oneline": false, + "multiple": true, + "required": true, + "showlist": true + }, + "input_type": "cus_67", + "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_69", + "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_60", + "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_4", + "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_14", + "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_6", + "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_17", + "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_5", + "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_11", + "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_71", + "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_176", + "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_16", + "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_18", + "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_19", + "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_21", + "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_10", + "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_13", + "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_88", + "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_87", + "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_85", + "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_84", + "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_83", + "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_102", + "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_82", + "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_80", + "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_79", + "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_75", + "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_8", + "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_9", + "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_62", + "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_28", + "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_27", + "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_12", + "title_i18n": { + "en": "Relation", + "ja": "関連情報" + }, + "input_value": "", + "input_maxItems": "9999", + "input_minItems": "1" + }, + "item_1617605131499": { + "title": "File", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": true, + "required": false, + "showlist": true + }, + "input_type": "cus_65", + "title_i18n": { + "en": "File", + "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_3", + "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_119", + "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_78", + "title_i18n": { + "en": "Degree Grantor", + "ja": "学位授与機関" + }, + "input_value": "", + "input_maxItems": "9999", + "input_minItems": "1" + }, + "item_1662046377046": { + "title": "サムネイル", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": true, + "required": false, + "showlist": true + }, + "input_type": "cus_1037", + "title_i18n": { + "en": "thumbnail", + "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_1617605131499", + "item_1617620223087", + "item_1662046377046" + ], + "edit_notes": { + "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_1617605131499": "", + "item_1617610673286": "", + "item_1617620223087": "", + "item_1617944105607": "", + "item_1662046377046": "" + }, + "meta_system": { + "system_file": { + "title": "File Information", + "option": { + "crtf": false, + "hidden": true, + "oneline": false, + "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, + "oneline": false, + "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, + "oneline": false, + "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, + "oneline": false, + "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_1617186331708": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551255647225": { + "type": "string", + "title": "Title", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "subitem_1551255648112": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617186385884": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551255720400": { + "type": "string", + "title": "Alternative Title", + "format": "text", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + }, + "title_i18n_temp": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + "subitem_1551255721061": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617186419668": { + "type": "object", + "format": "object", + "properties": { + "iscreator": { + "type": "string", + "title": "iscreator", + "format": "text", + "uniqueKey": "item_1617186419668_iscreator", + "title_i18n": { + "en": "", + "ja": "" + } + }, + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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_i18n_temp": { + "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": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + "creatorNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者姓名", + "format": "array" + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "作成者識別子", + "format": "text", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "作成者識別子URI", + "format": "text", + "title_i18n": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + }, + "title_i18n_temp": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + } + }, + "nameIdentifierScheme": { + "enum": [], + "type": [ + "null", + "string" + ], + "title": "作成者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "affiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + "affiliationNameIdentifierURI": { + "type": "string", + "title": "所属機関識別子URI", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "affiliationNameIdentifierScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + } + } + }, + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "creatorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者別名", + "format": "array" + } + } + }, + "item_1617186476635": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522299639480": { + "enum": [ + null, + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ], + "type": [ + "null", + "string" + ], + "title": "アクセス権", + "format": "select", + "currentEnum": [ + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ] + }, + "subitem_1600958577026": { + "type": "string", + "title": "アクセス権URI", + "format": "text", + "title_i18n": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + }, + "title_i18n_temp": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + } + } + } + }, + "item_1617186499011": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522650717957": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650727486": { + "type": "string", + "title": "権利情報Resource", + "format": "text", + "title_i18n": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + }, + "title_i18n_temp": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + } + }, + "subitem_1522651041219": { + "type": "string", + "title": "権利情報", + "format": "text", + "title_i18n": { + "en": "Rights Information", + "ja": "権利情報" + }, + "title_i18n_temp": { + "en": "Rights Information", + "ja": "権利情報" + } + } + } + }, + "item_1617186609386": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522299896455": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300014469": { + "enum": [ + null, + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ], + "type": [ + "null", + "string" + ], + "title": "主題Scheme", + "format": "select", + "currentEnum": [ + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ] + }, + "subitem_1522300048512": { + "type": "string", + "title": "主題URI", + "format": "text", + "title_i18n": { + "en": "Subject URI", + "ja": "主題URI" + }, + "title_i18n_temp": { + "en": "Subject URI", + "ja": "主題URI" + } + }, + "subitem_1523261968819": { + "type": "string", + "title": "主題", + "format": "text", + "title_i18n": { + "en": "Subject", + "ja": "主題" + }, + "title_i18n_temp": { + "en": "Subject", + "ja": "主題" + } + } + } + }, + "item_1617186626617": { + "type": "object", + "format": "object", + "properties": { + "subitem_description": { + "type": "string", + "title": "内容記述", + "format": "textarea", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + }, + "title_i18n_temp": { + "en": "Description", + "ja": "内容記述" + } + }, + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617186643794": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522300295150": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300316516": { + "type": "string", + "title": "出版者", + "format": "text", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + }, + "title_i18n_temp": { + "en": "Publisher", + "ja": "出版者" + } + } + } + }, + "item_1617186660861": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522300695726": { + "enum": [ + null, + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ] + }, + "subitem_1522300722591": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + } + } + }, + "item_1617186702042": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551255818386": { + "enum": [ + null, + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ] + } + } + }, + "item_1617186783814": { + "type": "object", + "format": "object", + "properties": { + "subitem_identifier_uri": { + "type": "string", + "title": "識別子", + "format": "text", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + }, + "title_i18n_temp": { + "en": "Identifier", + "ja": "識別子" + } + }, + "subitem_identifier_type": { + "enum": [ + null, + "DOI", + "HDL", + "URI" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "DOI", + "HDL", + "URI" + ] + } + } + }, + "item_1617186819068": { + "type": "object", + "format": "object", + "properties": { + "subitem_identifier_reg_text": { + "type": "string", + "title": "ID登録", + "format": "text", + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + }, + "title_i18n_temp": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + "subitem_identifier_reg_type": { + "enum": [ + null, + "JaLC", + "Crossref", + "DataCite", + "PMID" + ], + "type": [ + "null", + "string" + ], + "title": "ID登録タイプ", + "format": "select", + "currentEnum": [ + "JaLC", + "Crossref", + "DataCite", + "PMID" + ] + } + } + }, + "item_1617186859717": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522658018441": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522658031721": { + "type": "string", + "title": "時間的範囲", + "format": "text", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + }, + "title_i18n_temp": { + "en": "Temporal", + "ja": "時間的範囲" + } + } + } + }, + "item_1617186882738": { + "type": "object", + "format": "object", + "properties": { + "subitem_geolocation_box": { + "type": "object", + "title": "位置情報(空間)", + "format": "object", + "properties": { + "subitem_east_longitude": { + "type": "string", + "title": "東部経度", + "format": "text", + "title_i18n": { + "en": "East Bound Longitude", + "ja": "東部経度" + }, + "title_i18n_temp": { + "en": "East Bound Longitude", + "ja": "東部経度" + } + }, + "subitem_north_latitude": { + "type": "string", + "title": "北部緯度", + "format": "text", + "title_i18n": { + "en": "North Bound Latitude", + "ja": "北部緯度" + }, + "title_i18n_temp": { + "en": "North Bound Latitude", + "ja": "北部緯度" + } + }, + "subitem_south_latitude": { + "type": "string", + "title": "南部緯度", + "format": "text", + "title_i18n": { + "en": "South Bound Latitude", + "ja": "南部緯度" + }, + "title_i18n_temp": { + "en": "South Bound Latitude", + "ja": "南部緯度" + } + }, + "subitem_west_longitude": { + "type": "string", + "title": "西部経度", + "format": "text", + "title_i18n": { + "en": "West Bound Longitude", + "ja": "西部経度" + }, + "title_i18n_temp": { + "en": "West Bound Longitude", + "ja": "西部経度" + } + } + } + }, + "subitem_geolocation_place": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_geolocation_place_text": { + "type": "string", + "title": "位置情報(自由記述)", + "format": "text", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + } + }, + "title": "位置情報(自由記述)", + "format": "array" + }, + "subitem_geolocation_point": { + "type": "object", + "title": "位置情報(点)", + "format": "object", + "properties": { + "subitem_point_latitude": { + "type": "string", + "title": "緯度", + "format": "text", + "title_i18n": { + "en": "Point Latitude", + "ja": "緯度" + }, + "title_i18n_temp": { + "en": "Point Latitude", + "ja": "緯度" + } + }, + "subitem_point_longitude": { + "type": "string", + "title": "経度", + "format": "text", + "title_i18n": { + "en": "Point Longitude", + "ja": "経度" + }, + "title_i18n_temp": { + "en": "Point Longitude", + "ja": "経度" + } + } + } + } + } + }, + "item_1617186901218": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522399143519": { + "type": "object", + "title": "助成機関識別子", + "format": "object", + "properties": { + "subitem_1522399281603": { + "enum": [ + null, + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "助成機関識別子タイプ", + "format": "select", + "currentEnum": [ + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ] + }, + "subitem_1522399333375": { + "type": "string", + "title": "助成機関識別子", + "format": "text", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + } + } + }, + "subitem_1522399412622": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522399416691": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522737543681": { + "type": "string", + "title": "助成機関名", + "format": "text", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + } + } + }, + "title": "助成機関名", + "format": "array" + }, + "subitem_1522399571623": { + "type": "object", + "title": "研究課題番号", + "format": "object", + "properties": { + "subitem_1522399585738": { + "type": "string", + "title": "研究課題URI", + "format": "text", + "title_i18n": { + "en": "Award URI", + "ja": "研究課題URI" + }, + "title_i18n_temp": { + "en": "Award URI", + "ja": "研究課題URI" + } + }, + "subitem_1522399628911": { + "type": "string", + "title": "研究課題番号", + "format": "text", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + } + } + }, + "subitem_1522399651758": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522721910626": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522721929892": { + "type": "string", + "title": "研究課題名", + "format": "text", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + } + }, + "title": "研究課題名", + "format": "array" + } + } + }, + "item_1617186920753": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522646500366": { + "enum": [ + null, + "PISSN", + "EISSN", + "ISSN", + "NCID" + ], + "type": [ + "null", + "string" + ], + "title": "収録物識別子タイプ", + "format": "select", + "currentEnum": [ + "PISSN", + "EISSN", + "ISSN", + "NCID" + ] + }, + "subitem_1522646572813": { + "type": "string", + "title": "収録物識別子", + "format": "text", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + }, + "title_i18n_temp": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + } + } + }, + "item_1617186941041": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522650068558": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650091861": { + "type": "string", + "title": "収録物名", + "format": "text", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + }, + "title_i18n_temp": { + "en": "Source Title", + "ja": "収録物名" + } + } + } + }, + "item_1617186959569": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256328147": { + "type": "string", + "title": "Volume Number", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + } + } + }, + "item_1617186981471": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256294723": { + "type": "string", + "title": "Issue Number", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + } + } + }, + "item_1617186994930": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256248092": { + "type": "string", + "title": "Number of Pages", + "format": "text", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Pages", + "ja": "ページ数" + } + } + } + }, + "item_1617187024783": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256198917": { + "type": "string", + "title": "Page Start", + "format": "text", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + } + } + }, + "item_1617187045071": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256185532": { + "type": "string", + "title": "Page End", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + } + } + }, + "item_1617187056579": { + "type": "object", + "format": "object", + "properties": { + "bibliographicPageEnd": { + "type": "string", + "title": "終了ページ", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + }, + "bibliographic_titles": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "bibliographic_title": { + "type": "string", + "title": "タイトル", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "bibliographic_titleLang": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + "bibliographicIssueDates": { + "type": "object", + "title": "発行日", + "format": "object", + "properties": { + "bibliographicIssueDate": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + }, + "bibliographicIssueDateType": { + "enum": [ + null, + "Issued" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Issued" + ] + } + } + }, + "bibliographicIssueNumber": { + "type": "string", + "title": "号", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + }, + "bibliographicVolumeNumber": { + "type": "string", + "title": "巻", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + }, + "bibliographicNumberOfPages": { + "type": "string", + "title": "ページ数", + "format": "text", + "title_i18n": { + "en": "Number of Page", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Page", + "ja": "ページ数" + } + } + } + }, + "item_1617187087799": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256171004": { + "type": "string", + "title": "Dissertation Number", + "format": "text", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + }, + "title_i18n_temp": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + } + } + }, + "item_1617187112279": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256126428": { + "type": "string", + "title": "Degree Name", + "format": "text", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + }, + "title_i18n_temp": { + "en": "Degree Name", + "ja": "学位名" + } + }, + "subitem_1551256129013": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617187136212": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256096004": { + "type": "string", + "title": "Date Granted", + "format": "datetime", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + }, + "title_i18n_temp": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + } + } + }, + "item_1617187187528": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711633003": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711636923": { + "type": "string", + "title": "Conference Name", + "format": "text", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + "subitem_1599711645590": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Name", + "format": "array" + }, + "subitem_1599711655652": { + "type": "string", + "title": "Conference Sequence", + "format": "text", + "title_i18n": { + "en": "Conference Sequence", + "ja": "回次" + }, + "title_i18n_temp": { + "en": "Conference Sequence", + "ja": "回次" + } + }, + "subitem_1599711660052": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711680082": { + "type": "string", + "title": "Conference Sponsor", + "format": "text", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + "subitem_1599711686511": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Sponsor", + "format": "array" + }, + "subitem_1599711699392": { + "type": "object", + "title": "Conference Date", + "format": "object", + "properties": { + "subitem_1599711704251": { + "type": "string", + "title": "Conference Date", + "format": "text", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + "subitem_1599711712451": { + "type": "string", + "title": "Start Day", + "format": "text", + "title_i18n": { + "en": "Start Day", + "ja": "開始日" + }, + "title_i18n_temp": { + "en": "Start Day", + "ja": "開始日" + } + }, + "subitem_1599711727603": { + "type": "string", + "title": "Start Month", + "format": "text", + "title_i18n": { + "en": "Start Month", + "ja": "開始月" + }, + "title_i18n_temp": { + "en": "Start Month", + "ja": "開始月" + } + }, + "subitem_1599711731891": { + "type": "string", + "title": "Start Year", + "format": "text", + "title_i18n": { + "en": "Start Year", + "ja": "開始年" + }, + "title_i18n_temp": { + "en": "Start Year", + "ja": "開始年" + } + }, + "subitem_1599711735410": { + "type": "string", + "title": "End Day", + "format": "text", + "title_i18n": { + "en": "End Day", + "ja": "終了日" + }, + "title_i18n_temp": { + "en": "End Day", + "ja": "終了日" + } + }, + "subitem_1599711739022": { + "type": "string", + "title": "End Month", + "format": "text", + "title_i18n": { + "en": "End Month", + "ja": "終了月" + }, + "title_i18n_temp": { + "en": "End Month", + "ja": "終了月" + } + }, + "subitem_1599711743722": { + "type": "string", + "title": "End Year", + "format": "text", + "title_i18n": { + "en": "End Year", + "ja": "終了年" + }, + "title_i18n_temp": { + "en": "End Year", + "ja": "終了年" + } + }, + "subitem_1599711745532": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "subitem_1599711758470": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711769260": { + "type": "string", + "title": "Conference Venue", + "format": "text", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + "subitem_1599711775943": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Venue", + "format": "array" + }, + "subitem_1599711788485": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711798761": { + "type": "string", + "title": "Conference Place", + "format": "text", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + "subitem_1599711803382": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Place", + "format": "array" + }, + "subitem_1599711813532": { + "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": "Conference Country", + "format": "select", + "currentEnum": [ + "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" + ] + } + } + }, + "item_1617258105262": { + "type": "object", + "format": "object", + "properties": { + "resourceuri": { + "type": "string", + "title": "資源タイプ識別子", + "format": "text", + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + }, + "resourcetype": { + "enum": [ + null, + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "資源タイプ", + "format": "select", + "currentEnum": [ + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ] + } + } + }, + "item_1617265215918": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522305645492": { + "enum": [ + null, + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ], + "type": [ + "null", + "string" + ], + "title": "出版タイプ", + "format": "select", + "currentEnum": [ + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ] + }, + "subitem_1600292170262": { + "type": "string", + "title": "出版タイプResource", + "format": "text", + "title_i18n": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + }, + "title_i18n_temp": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + } + } + } + }, + "item_1617349709064": { + "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": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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", + "currentEnum": [ + "ContactPerson", + "DataCollector", + "DataCurator", + "DataManager", + "Distributor", + "Editor", + "HostingInstitution", + "Producer", + "ProjectLeader", + "ProjectManager", + "ProjectMember", + "RelatedPerson", + "Researcher", + "ResearchGroup", + "Sponsor", + "Supervisor", + "WorkPackageLeader", + "Other" + ] + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "寄与者識別子", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "寄与者識別子URI", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + }, + "title_i18n_temp": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + } + }, + "nameIdentifierScheme": { + "enum": [], + "type": [ + "null", + "string" + ], + "title": "寄与者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + } + }, + "title": "寄与者メールアドレス", + "format": "array" + }, + "contributorNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "lang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "contributorName": { + "type": "string", + "title": "姓名", + "format": "text", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "contributorAffiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "contributorAffiliationScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + }, + "contributorAffiliationNameIdentifier": { + "type": "string", + "title": "所属機関識別子", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "contributorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "寄与者別名", + "format": "array" + } + } + }, + "item_1617349808926": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523263171732": { + "type": "string", + "title": "バージョン情報", + "format": "text", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version", + "ja": "バージョン情報" + } + } + } + }, + "item_1617351524846": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523260933860": { + "enum": [ + null, + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ], + "type": [ + "null", + "string" + ], + "title": "APC", + "format": "select", + "currentEnum": [ + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ] + } + } + }, + "item_1617353299429": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522306207484": { + "enum": [ + null, + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ], + "type": [ + "null", + "string" + ], + "title": "関連タイプ", + "format": "select", + "currentEnum": [ + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ] + }, + "subitem_1522306287251": { + "type": "object", + "title": "関連識別子", + "format": "object", + "properties": { + "subitem_1522306382014": { + "enum": [ + null, + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ] + }, + "subitem_1522306436033": { + "type": "string", + "title": "関連識別子", + "format": "text", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + } + } + }, + "subitem_1523320863692": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523320867455": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1523320909613": { + "type": "string", + "title": "関連名称", + "format": "text", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + } + }, + "title": "関連名称", + "format": "array" + } + } + }, + "item_1617605131499": { + "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", + "summary", + "fulltext", + "thumbnail", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "オブジェクトタイプ", + "format": "select", + "currentEnum": [ + "abstract", + "summary", + "fulltext", + "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", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Collected", + "Copyrighted", + "Created", + "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_1617610673286": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "権利者識別子", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "権利者識別子URI", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + } + }, + "nameIdentifierScheme": { + "enum": [], + "type": [ + "null", + "string" + ], + "title": "権利者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "title": "権利者識別子", + "format": "array" + }, + "rightHolderNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "rightHolderName": { + "type": "string", + "title": "権利者名", + "format": "text", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + }, + "rightHolderLanguage": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "権利者名", + "format": "array" + } + } + }, + "item_1617620223087": { + "type": "object", + "format": "object", + "properties": { + "subitem_1565671149650": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1565671169640": { + "type": "string", + "title": "Banner Headline", + "format": "text", + "title_i18n": { + "en": "Banner Headline", + "ja": "大見出し" + }, + "title_i18n_temp": { + "en": "Banner Headline", + "ja": "大見出し" + } + }, + "subitem_1565671178623": { + "type": "string", + "title": "Subheading", + "format": "text", + "title_i18n": { + "en": "Subheading", + "ja": "小見出し" + }, + "title_i18n_temp": { + "en": "Subheading", + "ja": "小見出し" + } + } + } + }, + "item_1617944105607": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256015892": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256027296": { + "type": "string", + "title": "Degree Grantor Name Identifier", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + "subitem_1551256029891": { + "enum": [ + null, + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "Degree Grantor Name Identifier Scheme", + "format": "select", + "currentEnum": [ + "kakenhi" + ] + } + } + }, + "title": "Degree Grantor Name Identifier", + "format": "array" + }, + "subitem_1551256037922": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256042287": { + "type": "string", + "title": "Degree Grantor Name", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + }, + "subitem_1551256047619": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Degree Grantor Name", + "format": "array" + } + } + }, + "item_1662046377046": { + "type": "object", + "format": "object", + "properties": { + "subitem_thumbnail": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "thumbnail_url": { + "type": "string", + "title": "URI", + "format": "text", + "title_i18n": { + "en": "URI", + "ja": "URI" + }, + "title_i18n_temp": { + "en": "URI", + "ja": "URI" + } + }, + "thumbnail_label": { + "type": "string", + "title": "ラベル", + "format": "text", + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + } + } + } + }, + "title": "URI", + "format": "array" + } + } + } + } + }, + "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_1551255647225", + "type": "text", + "title": "Title", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + { + "key": "item_1617186331708[].subitem_1551255648112", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Title", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + } + }, + { + "add": "New", + "key": "item_1617186385884", + "items": [ + { + "key": "item_1617186385884[].subitem_1551255720400", + "type": "text", + "title": "Alternative Title", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + }, + "title_i18n_temp": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + { + "key": "item_1617186385884[].subitem_1551255721061", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Alternative Title", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + { + "add": "New", + "key": "item_1617186419668", + "items": [ + { + "key": "item_1617186419668[].authorInputButton", + "icon": "glyphicon glyphicon-search", + "type": "button", + "style": "btn-default pull-right m-top-5", + "title": "著者DBから入力", + "onClick": "searchAuthor('item_1617186419668', true, form)" + }, + { + "add": "New", + "key": "item_1617186419668[].nameIdentifiers", + "items": [ + { + "key": "item_1617186419668[].nameIdentifiers[].nameIdentifierScheme", + "type": "select", + "title": "作成者識別子Scheme", + "titleMap": [], + "title_i18n": { + "en": "Creator Identifier Scheme", + "ja": "作成者識別子Scheme" + }, + "title_i18n_temp": { + "en": "Creator Identifier Scheme", + "ja": "作成者識別子Scheme" + } + }, + { + "key": "item_1617186419668[].nameIdentifiers[].nameIdentifierURI", + "type": "text", + "title": "作成者識別子URI", + "title_i18n": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + }, + "title_i18n_temp": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + } + }, + { + "key": "item_1617186419668[].nameIdentifiers[].nameIdentifier", + "type": "text", + "title": "作成者識別子", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者識別子", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorNames", + "items": [ + { + "key": "item_1617186419668[].creatorNames[].creatorName", + "type": "text", + "title": "姓名", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + { + "key": "item_1617186419668[].creatorNames[].creatorNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者姓名", + "title_i18n": { + "en": "Creator Name", + "ja": "作成者姓名" + }, + "title_i18n_temp": { + "en": "Creator Name", + "ja": "作成者姓名" + } + }, + { + "add": "New", + "key": "item_1617186419668[].familyNames", + "items": [ + { + "key": "item_1617186419668[].familyNames[].familyName", + "type": "text", + "title": "姓", + "title_i18n": { + "en": "Family Name", + "ja": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + { + "key": "item_1617186419668[].familyNames[].familyNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者姓", + "title_i18n": { + "en": "Creator Family Name", + "ja": "作成者姓" + }, + "title_i18n_temp": { + "en": "Creator Family Name", + "ja": "作成者姓" + } + }, + { + "add": "New", + "key": "item_1617186419668[].givenNames", + "items": [ + { + "key": "item_1617186419668[].givenNames[].givenName", + "type": "text", + "title": "名", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + { + "key": "item_1617186419668[].givenNames[].givenNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者名", + "title_i18n": { + "en": "Creator Given Name", + "ja": "作成者名" + }, + "title_i18n_temp": { + "en": "Creator Given Name", + "ja": "作成者名" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorAlternatives", + "items": [ + { + "key": "item_1617186419668[].creatorAlternatives[].creatorAlternative", + "type": "text", + "title": "別名", + "title_i18n": { + "en": "Alternative Name", + "ja": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + { + "key": "item_1617186419668[].creatorAlternatives[].creatorAlternativeLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者別名", + "title_i18n": { + "en": "Creator Alternative Name", + "ja": "作成者別名" + }, + "title_i18n_temp": { + "en": "Creator Alternative Name", + "ja": "作成者別名" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorMails", + "items": [ + { + "key": "item_1617186419668[].creatorMails[].creatorMail", + "type": "text", + "title": "メールアドレス", + "title_i18n": { + "en": "Email Address", + "ja": "メールアドレス" + }, + "title_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者メールアドレス", + "title_i18n": { + "en": "Creator Email Address", + "ja": "作成者メールアレス" + }, + "title_i18n_temp": { + "en": "Creator Email Address", + "ja": "作成者メールアレス" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorAffiliations", + "items": [ + { + "add": "New", + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers", + "items": [ + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifier", + "type": "text", + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierScheme", + "type": "select", + "title": "所属機関識別子スキーマ", + "titleMap": [ + { + "name": "kakenhi", + "value": "kakenhi" + }, + { + "name": "ISNI", + "value": "ISNI" + }, + { + "name": "Ringgold", + "value": "Ringgold" + }, + { + "name": "GRID", + "value": "GRID" + } + ], + "title_i18n": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + } + }, + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierURI", + "type": "text", + "title": "所属機関識別子URI", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorAffiliations[].affiliationNames", + "items": [ + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationName", + "type": "text", + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者所属", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "作成者所属" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "作成者所属" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Creator", + "title_i18n": { + "en": "Creator", + "ja": "作成者" + } + }, + { + "add": "New", + "key": "item_1617349709064", + "items": [ + { + "key": "item_1617349709064[].contributorType", + "type": "select", + "title": "寄与者タイプ", + "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" + } + ], + "title_i18n": { + "en": "Contributor Type", + "ja": "寄与者タイプ" + }, + "title_i18n_temp": { + "en": "Contributor Type", + "ja": "寄与者タイプ" + } + }, + { + "add": "New", + "key": "item_1617349709064[].nameIdentifiers", + "items": [ + { + "key": "item_1617349709064[].nameIdentifiers[].nameIdentifierScheme", + "type": "select", + "title": "寄与者識別子Scheme", + "titleMap": [], + "title_i18n": { + "en": "Contributor Identifier Scheme", + "ja": "寄与者識別子Scheme" + }, + "title_i18n_temp": { + "en": "Contributor Identifier Scheme", + "ja": "寄与者識別子Scheme" + } + }, + { + "key": "item_1617349709064[].nameIdentifiers[].nameIdentifierURI", + "type": "text", + "title": "寄与者識別子URI", + "title_i18n": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + }, + "title_i18n_temp": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + } + }, + { + "key": "item_1617349709064[].nameIdentifiers[].nameIdentifier", + "type": "text", + "title": "寄与者識別子", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者識別子", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorNames", + "items": [ + { + "key": "item_1617349709064[].contributorNames[].contributorName", + "type": "text", + "title": "姓名", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + { + "key": "item_1617349709064[].contributorNames[].lang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者姓名", + "title_i18n": { + "en": "Contributor Name", + "ja": "寄与者姓名" + }, + "title_i18n_temp": { + "en": "Contributor Name", + "ja": "寄与者姓名" + } + }, + { + "add": "New", + "key": "item_1617349709064[].familyNames", + "items": [ + { + "key": "item_1617349709064[].familyNames[].familyName", + "type": "text", + "title": "姓", + "title_i18n": { + "en": "Family Name", + "ja": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + { + "key": "item_1617349709064[].familyNames[].familyNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者姓", + "title_i18n": { + "en": "Contributor Family Name", + "ja": "寄与者姓" + }, + "title_i18n_temp": { + "en": "Contributor Family Name", + "ja": "寄与者姓" + } + }, + { + "add": "New", + "key": "item_1617349709064[].givenNames", + "items": [ + { + "key": "item_1617349709064[].givenNames[].givenName", + "type": "text", + "title": "名", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + { + "key": "item_1617349709064[].givenNames[].givenNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者名", + "title_i18n": { + "en": "Contributor Given Name", + "ja": "寄与者名" + }, + "title_i18n_temp": { + "en": "Contributor Given Name", + "ja": "寄与者名" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorAlternatives", + "items": [ + { + "key": "item_1617349709064[].contributorAlternatives[].contributorAlternative", + "type": "text", + "title": "別名", + "title_i18n": { + "en": "Alternative Name", + "ja": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + { + "key": "item_1617349709064[].contributorAlternatives[].contributorAlternativeLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者別名", + "title_i18n": { + "en": "Contributor Alternative Name", + "ja": "寄与者別名" + }, + "title_i18n_temp": { + "en": "Contributor Alternative Name", + "ja": "寄与者別名" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorAffiliations", + "items": [ + { + "add": "New", + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers", + "items": [ + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationNameIdentifier", + "type": "text", + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationScheme", + "type": "select", + "title": "所属機関識別子スキーマ", + "titleMap": [ + { + "name": "kakenhi", + "value": "kakenhi" + }, + { + "name": "ISNI", + "value": "ISNI" + }, + { + "name": "Ringgold", + "value": "Ringgold" + }, + { + "name": "GRID", + "value": "GRID" + } + ], + "title_i18n": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + } + }, + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationURI", + "type": "text", + "title": "所属機関識別子URI", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames", + "items": [ + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationName", + "type": "text", + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者所属", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "寄与者所属" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "寄与者所属" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorMails", + "items": [ + { + "key": "item_1617349709064[].contributorMails[].contributorMail", + "type": "text", + "title": "メールアドレス", + "title_i18n": { + "en": "Email Address", + "ja": "メールアドレス" + }, + "title_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者メールアドレス", + "title_i18n": { + "en": "Contributor Email Address", + "ja": "寄与者メールアドレス" + }, + "title_i18n_temp": { + "en": "Contributor Email Address", + "ja": "寄与者メールアドレス" + } + }, + { + "key": "item_1617349709064[].authorInputButton", + "icon": "glyphicon glyphicon-search", + "type": "button", + "style": "btn-default pull-right m-top-5", + "title": "著者DBから入力", + "onClick": "searchAuthor('item_1617349709064', true, form)" + } + ], + "style": { + "add": "btn-success" + }, + "title": "Contributor", + "title_i18n": { + "en": "Contributor", + "ja": "寄与者" + } + }, + { + "key": "item_1617186476635", + "type": "fieldset", + "items": [ + { + "key": "item_1617186476635.subitem_1522299639480", + "type": "select", + "title": "アクセス権", + "onChange": "changedAccessRights(this, modelValue)", + "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" + } + ], + "title_i18n": { + "en": "Access Rights", + "ja": "アクセス権" + }, + "title_i18n_temp": { + "en": "Access Rights", + "ja": "アクセス権" + } + }, + { + "key": "item_1617186476635.subitem_1600958577026", + "type": "text", + "title": "アクセス権URI", + "readonly": true, + "title_i18n": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + }, + "fieldHtmlClass": "txt-access-rights-uri", + "title_i18n_temp": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + } + } + ], + "title": "Access Rights", + "title_i18n": { + "en": "Access Rights", + "ja": "アクセス権" + } + }, + { + "key": "item_1617351524846", + "type": "fieldset", + "items": [ + { + "key": "item_1617351524846.subitem_1523260933860", + "type": "select", + "title": "APC", + "titleMap": [ + { + "name": "Paid", + "value": "Paid" + }, + { + "name": "Fully waived", + "value": "Fully waived" + }, + { + "name": "Not required", + "value": "Not required" + }, + { + "name": "Partially waived", + "value": "Partially waived" + }, + { + "name": "Not charged", + "value": "Not charged" + }, + { + "name": "Unknown", + "value": "Unknown" + } + ], + "title_i18n": { + "en": "APC", + "ja": "APC" + } + } + ], + "title": "APC", + "title_i18n": { + "en": "APC", + "ja": "APC" + } + }, + { + "add": "New", + "key": "item_1617186499011", + "items": [ + { + "key": "item_1617186499011[].subitem_1522650717957", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186499011[].subitem_1522650727486", + "type": "text", + "title": "権利情報Resource", + "title_i18n": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + }, + "title_i18n_temp": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + } + }, + { + "key": "item_1617186499011[].subitem_1522651041219", + "type": "text", + "title": "権利情報", + "title_i18n": { + "en": "Rights Information", + "ja": "権利情報" + }, + "title_i18n_temp": { + "en": "Rights Information", + "ja": "権利情報" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Rights", + "title_i18n": { + "en": "Rights", + "ja": "権利情報" + } + }, + { + "add": "New", + "key": "item_1617610673286", + "items": [ + { + "add": "New", + "key": "item_1617610673286[].nameIdentifiers", + "items": [ + { + "key": "item_1617610673286[].nameIdentifiers[].nameIdentifierScheme", + "type": "select", + "title": "権利者識別子Scheme", + "titleMap": [], + "title_i18n": { + "en": "Right Holder Identifier Scheme", + "ja": "権利者識別子Scheme" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier Scheme", + "ja": "権利者識別子Scheme" + } + }, + { + "key": "item_1617610673286[].nameIdentifiers[].nameIdentifierURI", + "type": "text", + "title": "権利者識別子URI", + "title_i18n": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + } + }, + { + "key": "item_1617610673286[].nameIdentifiers[].nameIdentifier", + "type": "text", + "title": "権利者識別子", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "権利者識別子", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + }, + { + "add": "New", + "key": "item_1617610673286[].rightHolderNames", + "items": [ + { + "key": "item_1617610673286[].rightHolderNames[].rightHolderLanguage", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617610673286[].rightHolderNames[].rightHolderName", + "type": "text", + "title": "権利者名", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "権利者名", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Rights Holder", + "title_i18n": { + "en": "Rights Holder", + "ja": "権利者情報" + } + }, + { + "add": "New", + "key": "item_1617186609386", + "items": [ + { + "key": "item_1617186609386[].subitem_1522299896455", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186609386[].subitem_1522300014469", + "type": "select", + "title": "主題Scheme", + "titleMap": [ + { + "name": "BSH", + "value": "BSH" + }, + { + "name": "DDC", + "value": "DDC" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Subject Scheme", + "ja": "主題Scheme" + }, + "title_i18n_temp": { + "en": "Subject Scheme", + "ja": "主題Scheme" + } + }, + { + "key": "item_1617186609386[].subitem_1522300048512", + "type": "text", + "title": "主題URI", + "title_i18n": { + "en": "Subject URI", + "ja": "主題URI" + }, + "title_i18n_temp": { + "en": "Subject URI", + "ja": "主題URI" + } + }, + { + "key": "item_1617186609386[].subitem_1523261968819", + "type": "text", + "title": "主題", + "title_i18n": { + "en": "Subject", + "ja": "主題" + }, + "title_i18n_temp": { + "en": "Subject", + "ja": "主題" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Subject", + "title_i18n": { + "en": "Subject", + "ja": "主題" + } + }, + { + "add": "New", + "key": "item_1617186626617", + "items": [ + { + "key": "item_1617186626617[].subitem_description_type", + "type": "select", + "title": "内容記述タイプ", + "titleMap": [ + { + "name": "Abstract", + "value": "Abstract" + }, + { + "name": "Methods", + "value": "Methods" + }, + { + "name": "TableOfContents", + "value": "TableOfContents" + }, + { + "name": "TechnicalInfo", + "value": "TechnicalInfo" + }, + { + "name": "Other", + "value": "Other" + } + ], + "title_i18n": { + "en": "Description Type", + "ja": "内容記述タイプ" + }, + "title_i18n_temp": { + "en": "Description Type", + "ja": "内容記述タイプ" + } + }, + { + "key": "item_1617186626617[].subitem_description", + "type": "textarea", + "title": "内容記述", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + }, + "title_i18n_temp": { + "en": "Description", + "ja": "内容記述" + } + }, + { + "key": "item_1617186626617[].subitem_description_language", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Description", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + } + }, + { + "add": "New", + "key": "item_1617186643794", + "items": [ + { + "key": "item_1617186643794[].subitem_1522300295150", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186643794[].subitem_1522300316516", + "type": "text", + "title": "出版者", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + }, + "title_i18n_temp": { + "en": "Publisher", + "ja": "出版者" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Publisher", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + } + }, + { + "add": "New", + "key": "item_1617186660861", + "items": [ + { + "key": "item_1617186660861[].subitem_1522300695726", + "type": "select", + "title": "日付タイプ", + "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" + } + ], + "title_i18n": { + "en": "Date Type", + "ja": "日付タイプ" + }, + "title_i18n_temp": { + "en": "Date Type", + "ja": "日付タイプ" + } + }, + { + "key": "item_1617186660861[].subitem_1522300722591", + "type": "template", + "title": "日付", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Date", + "title_i18n": { + "en": "Date", + "ja": "日付" + } + }, + { + "add": "New", + "key": "item_1617186702042", + "items": [ + { + "key": "item_1617186702042[].subitem_1551255818386", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "jpn", + "value": "jpn" + }, + { + "name": "eng", + "value": "eng" + }, + { + "name": "fra", + "value": "fra" + }, + { + "name": "ita", + "value": "ita" + }, + { + "name": "spa", + "value": "spa" + }, + { + "name": "zho", + "value": "zho" + }, + { + "name": "rus", + "value": "rus" + }, + { + "name": "lat", + "value": "lat" + }, + { + "name": "msa", + "value": "msa" + }, + { + "name": "epo", + "value": "epo" + }, + { + "name": "ara", + "value": "ara" + }, + { + "name": "ell", + "value": "ell" + }, + { + "name": "kor", + "value": "kor" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Language", + "title_i18n": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617258105262", + "type": "fieldset", + "items": [ + { + "key": "item_1617258105262.resourcetype", + "type": "select", + "title": "資源タイプ", + "onChange": "resourceTypeSelect()", + "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 article", + "value": "journal article" + }, + { + "name": "newspaper", + "value": "newspaper" + }, + { + "name": "periodical", + "value": "periodical" + }, + { + "name": "review article", + "value": "review article" + }, + { + "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 object", + "value": "conference object" + }, + { + "name": "conference proceedings", + "value": "conference proceedings" + }, + { + "name": "conference poster", + "value": "conference poster" + }, + { + "name": "dataset", + "value": "dataset" + }, + { + "name": "interview", + "value": "interview" + }, + { + "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": "patent", + "value": "patent" + }, + { + "name": "internal report", + "value": "internal report" + }, + { + "name": "report", + "value": "report" + }, + { + "name": "research report", + "value": "research report" + }, + { + "name": "technical report", + "value": "technical report" + }, + { + "name": "policy report", + "value": "policy report" + }, + { + "name": "report part", + "value": "report part" + }, + { + "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": "interactive resource", + "value": "interactive resource" + }, + { + "name": "learning object", + "value": "learning object" + }, + { + "name": "manuscript", + "value": "manuscript" + }, + { + "name": "musical notation", + "value": "musical notation" + }, + { + "name": "research proposal", + "value": "research proposal" + }, + { + "name": "software", + "value": "software" + }, + { + "name": "technical documentation", + "value": "technical documentation" + }, + { + "name": "workflow", + "value": "workflow" + }, + { + "name": "other", + "value": "other" + } + ], + "title_i18n": { + "en": "Resource Type", + "ja": "資源タイプ" + }, + "title_i18n_temp": { + "en": "Resource Type", + "ja": "資源タイプ" + } + }, + { + "key": "item_1617258105262.resourceuri", + "type": "text", + "title": "資源タイプ識別子", + "readonly": true, + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + } + ], + "title": "Resource Type", + "title_i18n": { + "en": "Resource Type", + "ja": "資源タイプ" + } + }, + { + "key": "item_1617349808926", + "type": "fieldset", + "items": [ + { + "key": "item_1617349808926.subitem_1523263171732", + "type": "text", + "title": "バージョン情報", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version", + "ja": "バージョン情報" + } + } + ], + "title": "Version", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + } + }, + { + "key": "item_1617265215918", + "type": "fieldset", + "items": [ + { + "key": "item_1617265215918.subitem_1522305645492", + "type": "select", + "title": "出版タイプ", + "onChange": "changedVersionType(this, modelValue)", + "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" + } + ], + "title_i18n": { + "en": "Version Type", + "ja": "出版タイプ" + }, + "title_i18n_temp": { + "en": "Version Type", + "ja": "出版タイプ" + } + }, + { + "key": "item_1617265215918.subitem_1600292170262", + "type": "text", + "title": "出版タイプResource", + "readonly": true, + "title_i18n": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + }, + "fieldHtmlClass": "txt-version-resource", + "title_i18n_temp": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + } + } + ], + "title": "Version Type", + "title_i18n": { + "en": "Version Type", + "ja": "出版タイプ" + } + }, + { + "add": "New", + "key": "item_1617186783814", + "items": [ + { + "key": "item_1617186783814[].subitem_identifier_uri", + "type": "text", + "title": "識別子", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + }, + "title_i18n_temp": { + "en": "Identifier", + "ja": "識別子" + } + }, + { + "key": "item_1617186783814[].subitem_identifier_type", + "type": "select", + "title": "識別子タイプ", + "titleMap": [ + { + "name": "DOI", + "value": "DOI" + }, + { + "name": "HDL", + "value": "HDL" + }, + { + "name": "URI", + "value": "URI" + } + ], + "title_i18n": { + "en": "Identifier Type", + "ja": "識別子タイプ" + }, + "title_i18n_temp": { + "en": "Identifier Type", + "ja": "識別子タイプ" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Identifier", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + } + }, + { + "key": "item_1617186819068", + "type": "fieldset", + "items": [ + { + "key": "item_1617186819068.subitem_identifier_reg_text", + "type": "text", + "title": "ID登録", + "readonly": true, + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + }, + "title_i18n_temp": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + { + "key": "item_1617186819068.subitem_identifier_reg_type", + "type": "select", + "title": "ID登録タイプ", + "readonly": true, + "titleMap": [ + { + "name": "JaLC", + "value": "JaLC" + }, + { + "name": "Crossref", + "value": "Crossref" + }, + { + "name": "DataCite", + "value": "DataCite" + }, + { + "name": "PMID", + "value": "PMID" + } + ], + "title_i18n": { + "en": "Identifier Registration Type", + "ja": "ID登録タイプ" + }, + "title_i18n_temp": { + "en": "Identifier Registration Type", + "ja": "ID登録タイプ" + } + } + ], + "title": "Identifier Registration", + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + { + "add": "New", + "key": "item_1617353299429", + "items": [ + { + "key": "item_1617353299429[].subitem_1522306207484", + "type": "select", + "title": "関連タイプ", + "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": "isSupplementTo", + "value": "isSupplementTo" + }, + { + "name": "isSupplementedBy", + "value": "isSupplementedBy" + }, + { + "name": "isIdenticalTo", + "value": "isIdenticalTo" + }, + { + "name": "isDerivedFrom", + "value": "isDerivedFrom" + }, + { + "name": "isSourceOf", + "value": "isSourceOf" + } + ], + "title_i18n": { + "en": "Relation Type", + "ja": "関連タイプ" + }, + "title_i18n_temp": { + "en": "Relation Type", + "ja": "関連タイプ" + } + }, + { + "key": "item_1617353299429[].subitem_1522306287251", + "type": "fieldset", + "items": [ + { + "key": "item_1617353299429[].subitem_1522306287251.subitem_1522306382014", + "type": "select", + "title": "識別子タイプ", + "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" + } + ], + "title_i18n": { + "en": "Identifier Type", + "ja": "識別子タイプ" + }, + "title_i18n_temp": { + "en": "Identifier Type", + "ja": "識別子タイプ" + } + }, + { + "key": "item_1617353299429[].subitem_1522306287251.subitem_1522306436033", + "type": "text", + "title": "関連識別子", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + } + ], + "title": "関連識別子", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + }, + { + "add": "New", + "key": "item_1617353299429[].subitem_1523320863692", + "items": [ + { + "key": "item_1617353299429[].subitem_1523320863692[].subitem_1523320867455", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617353299429[].subitem_1523320863692[].subitem_1523320909613", + "type": "text", + "title": "関連名称", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "関連名称", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Relation", + "title_i18n": { + "en": "Relation", + "ja": "関連情報" + } + }, + { + "add": "New", + "key": "item_1617186859717", + "items": [ + { + "key": "item_1617186859717[].subitem_1522658018441", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186859717[].subitem_1522658031721", + "type": "text", + "title": "時間的範囲", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + }, + "title_i18n_temp": { + "en": "Temporal", + "ja": "時間的範囲" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Temporal", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + } + }, + { + "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": "経度", + "title_i18n": { + "en": "Point Longitude", + "ja": "経度" + }, + "title_i18n_temp": { + "en": "Point Longitude", + "ja": "経度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_point.subitem_point_latitude", + "type": "text", + "title": "緯度", + "title_i18n": { + "en": "Point Latitude", + "ja": "緯度" + }, + "title_i18n_temp": { + "en": "Point Latitude", + "ja": "緯度" + } + } + ], + "title": "位置情報(点)", + "title_i18n": { + "en": "Geo Location Point", + "ja": "位置情報(点)" + }, + "title_i18n_temp": { + "en": "Geo Location Point", + "ja": "位置情報(点)" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box", + "type": "fieldset", + "items": [ + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_west_longitude", + "type": "text", + "title": "西部経度", + "title_i18n": { + "en": "West Bound Longitude", + "ja": "西部経度" + }, + "title_i18n_temp": { + "en": "West Bound Longitude", + "ja": "西部経度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_east_longitude", + "type": "text", + "title": "東部経度", + "title_i18n": { + "en": "East Bound Longitude", + "ja": "東部経度" + }, + "title_i18n_temp": { + "en": "East Bound Longitude", + "ja": "東部経度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_south_latitude", + "type": "text", + "title": "南部緯度", + "title_i18n": { + "en": "South Bound Latitude", + "ja": "南部緯度" + }, + "title_i18n_temp": { + "en": "South Bound Latitude", + "ja": "南部緯度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_north_latitude", + "type": "text", + "title": "北部緯度", + "title_i18n": { + "en": "North Bound Latitude", + "ja": "北部緯度" + }, + "title_i18n_temp": { + "en": "North Bound Latitude", + "ja": "北部緯度" + } + } + ], + "title": "位置情報(空間)", + "title_i18n": { + "en": "Geo Location Box", + "ja": "位置情報(空間)" + }, + "title_i18n_temp": { + "en": "Geo Location Box", + "ja": "位置情報(空間)" + } + }, + { + "add": "New", + "key": "item_1617186882738[].subitem_geolocation_place", + "items": [ + { + "key": "item_1617186882738[].subitem_geolocation_place[].subitem_geolocation_place_text", + "type": "text", + "title": "位置情報(自由記述)", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "位置情報(自由記述)", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Geo Location", + "title_i18n": { + "en": "Geo Location", + "ja": "位置情報" + } + }, + { + "add": "New", + "key": "item_1617186901218", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399143519", + "type": "fieldset", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399143519.subitem_1522399281603", + "type": "select", + "title": "助成機関識別子タイプ", + "titleMap": [ + { + "name": "Crossref Funder", + "value": "Crossref Funder" + }, + { + "name": "GRID", + "value": "GRID" + }, + { + "name": "ISNI", + "value": "ISNI" + }, + { + "name": "Other", + "value": "Other" + }, + { + "name": "kakenhi", + "value": "kakenhi" + } + ], + "title_i18n": { + "en": "Funder Identifier Type", + "ja": "助成機関識別子タイプ" + }, + "title_i18n_temp": { + "en": "Funder Identifier Type", + "ja": "助成機関識別子タイプ" + } + }, + { + "key": "item_1617186901218[].subitem_1522399143519.subitem_1522399333375", + "type": "text", + "title": "助成機関識別子", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + } + ], + "title": "助成機関識別子", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + }, + { + "add": "New", + "key": "item_1617186901218[].subitem_1522399412622", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399412622[].subitem_1522399416691", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186901218[].subitem_1522399412622[].subitem_1522737543681", + "type": "text", + "title": "助成機関名", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "助成機関名", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + }, + { + "key": "item_1617186901218[].subitem_1522399571623", + "type": "fieldset", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399571623.subitem_1522399585738", + "type": "text", + "title": "研究課題URI", + "title_i18n": { + "en": "Award URI", + "ja": "研究課題URI" + }, + "title_i18n_temp": { + "en": "Award URI", + "ja": "研究課題URI" + } + }, + { + "key": "item_1617186901218[].subitem_1522399571623.subitem_1522399628911", + "type": "text", + "title": "研究課題番号", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + } + ], + "title": "研究課題番号", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + }, + { + "add": "New", + "key": "item_1617186901218[].subitem_1522399651758", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399651758[].subitem_1522721910626", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186901218[].subitem_1522399651758[].subitem_1522721929892", + "type": "text", + "title": "研究課題名", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "研究課題名", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Funding Reference", + "title_i18n": { + "en": "Funding Reference", + "ja": "助成情報" + } + }, + { + "add": "New", + "key": "item_1617186920753", + "items": [ + { + "key": "item_1617186920753[].subitem_1522646500366", + "type": "select", + "title": "収録物識別子タイプ", + "titleMap": [ + { + "name": "PISSN", + "value": "PISSN" + }, + { + "name": "EISSN", + "value": "EISSN" + }, + { + "name": "ISSN", + "value": "ISSN" + }, + { + "name": "NCID", + "value": "NCID" + } + ], + "title_i18n": { + "en": "Source Identifier Type", + "ja": "収録物識別子タイプ" + }, + "title_i18n_temp": { + "en": "Source Identifier Type", + "ja": "収録物識別子タイプ" + } + }, + { + "key": "item_1617186920753[].subitem_1522646572813", + "type": "text", + "title": "収録物識別子", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + }, + "title_i18n_temp": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Source Identifier", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + }, + { + "add": "New", + "key": "item_1617186941041", + "items": [ + { + "key": "item_1617186941041[].subitem_1522650068558", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186941041[].subitem_1522650091861", + "type": "text", + "title": "収録物名", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + }, + "title_i18n_temp": { + "en": "Source Title", + "ja": "収録物名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Source Title", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + } + }, + { + "key": "item_1617186959569", + "type": "fieldset", + "items": [ + { + "key": "item_1617186959569.subitem_1551256328147", + "type": "text", + "title": "Volume Number", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + } + ], + "title": "Volume Number", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + } + }, + { + "key": "item_1617186981471", + "type": "fieldset", + "items": [ + { + "key": "item_1617186981471.subitem_1551256294723", + "type": "text", + "title": "Issue Number", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + } + ], + "title": "Issue Number", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + } + }, + { + "key": "item_1617186994930", + "type": "fieldset", + "items": [ + { + "key": "item_1617186994930.subitem_1551256248092", + "type": "text", + "title": "Number of Pages", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Pages", + "ja": "ページ数" + } + } + ], + "title": "Number of Pages", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + } + }, + { + "key": "item_1617187024783", + "type": "fieldset", + "items": [ + { + "key": "item_1617187024783.subitem_1551256198917", + "type": "text", + "title": "Page Start", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + } + ], + "title": "Page Start", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + { + "key": "item_1617187045071", + "type": "fieldset", + "items": [ + { + "key": "item_1617187045071.subitem_1551256185532", + "type": "text", + "title": "Page End", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + } + ], + "title": "Page End", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + } + }, + { + "key": "item_1617187056579", + "type": "fieldset", + "items": [ + { + "add": "New", + "key": "item_1617187056579.bibliographic_titles", + "items": [ + { + "key": "item_1617187056579.bibliographic_titles[].bibliographic_title", + "type": "text", + "title": "タイトル", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + { + "key": "item_1617187056579.bibliographic_titles[].bibliographic_titleLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "雑誌名", + "title_i18n": { + "en": "Journal Title", + "ja": "雑誌名" + }, + "title_i18n_temp": { + "en": "Journal Title", + "ja": "雑誌名" + } + }, + { + "key": "item_1617187056579.bibliographicVolumeNumber", + "type": "text", + "title": "巻", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + }, + { + "key": "item_1617187056579.bibliographicIssueNumber", + "type": "text", + "title": "号", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + }, + { + "key": "item_1617187056579.bibliographicPageStart", + "type": "text", + "title": "開始ページ", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + { + "key": "item_1617187056579.bibliographicPageEnd", + "type": "text", + "title": "終了ページ", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + }, + { + "key": "item_1617187056579.bibliographicNumberOfPages", + "type": "text", + "title": "ページ数", + "title_i18n": { + "en": "Number of Page", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Page", + "ja": "ページ数" + } + }, + { + "key": "item_1617187056579.bibliographicIssueDates", + "type": "fieldset", + "items": [ + { + "key": "item_1617187056579.bibliographicIssueDates.bibliographicIssueDate", + "type": "template", + "title": "日付", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + }, + { + "key": "item_1617187056579.bibliographicIssueDates.bibliographicIssueDateType", + "type": "select", + "title": "日付タイプ", + "titleMap": [ + { + "name": "Issued", + "value": "Issued" + } + ], + "title_i18n": { + "en": "Date Type", + "ja": "日付タイプ" + }, + "title_i18n_temp": { + "en": "Date Type", + "ja": "日付タイプ" + } + } + ], + "title": "発行日", + "title_i18n": { + "en": "Issue Date", + "ja": "発行日" + }, + "title_i18n_temp": { + "en": "Issue Date", + "ja": "発行日" + } + } + ], + "title": "Bibliographic Information", + "title_i18n": { + "en": "Bibliographic Information", + "ja": "書誌情報" + } + }, + { + "key": "item_1617187087799", + "type": "fieldset", + "items": [ + { + "key": "item_1617187087799.subitem_1551256171004", + "type": "text", + "title": "Dissertation Number", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + }, + "title_i18n_temp": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + } + ], + "title": "Dissertation Number", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + }, + { + "add": "New", + "key": "item_1617187112279", + "items": [ + { + "key": "item_1617187112279[].subitem_1551256126428", + "type": "text", + "title": "Degree Name", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + }, + "title_i18n_temp": { + "en": "Degree Name", + "ja": "学位名" + } + }, + { + "key": "item_1617187112279[].subitem_1551256129013", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Name", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + } + }, + { + "key": "item_1617187136212", + "type": "fieldset", + "items": [ + { + "key": "item_1617187136212.subitem_1551256096004", + "type": "template", + "title": "Date Granted", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", + "title_i18n_temp": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + } + ], + "title": "Date Granted", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + }, + { + "add": "New", + "key": "item_1617944105607", + "items": [ + { + "add": "New", + "key": "item_1617944105607[].subitem_1551256015892", + "items": [ + { + "key": "item_1617944105607[].subitem_1551256015892[].subitem_1551256027296", + "type": "text", + "title": "Degree Grantor Name Identifier", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + { + "key": "item_1617944105607[].subitem_1551256015892[].subitem_1551256029891", + "type": "select", + "title": "Degree Grantor Name Identifier Scheme", + "titleMap": [ + { + "name": "kakenhi", + "value": "kakenhi" + } + ], + "title_i18n": { + "en": "Degree Grantor Name Identifier Scheme", + "ja": "学位授与機関識別子Scheme" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier Scheme", + "ja": "学位授与機関識別子Scheme" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Grantor Name Identifier", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + { + "add": "New", + "key": "item_1617944105607[].subitem_1551256037922", + "items": [ + { + "key": "item_1617944105607[].subitem_1551256037922[].subitem_1551256042287", + "type": "text", + "title": "Degree Grantor Name", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + }, + { + "key": "item_1617944105607[].subitem_1551256037922[].subitem_1551256047619", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Grantor Name", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Grantor", + "title_i18n": { + "en": "Degree Grantor", + "ja": "学位授与機関" + } + }, + { + "add": "New", + "key": "item_1617187187528", + "items": [ + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711633003", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711633003[].subitem_1599711636923", + "type": "text", + "title": "Conference Name", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + { + "key": "item_1617187187528[].subitem_1599711633003[].subitem_1599711645590", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Name", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + { + "key": "item_1617187187528[].subitem_1599711655652", + "type": "text", + "title": "Conference Sequence", + "title_i18n": { + "en": "Conference Sequence", + "ja": "回次" + }, + "title_i18n_temp": { + "en": "Conference Sequence", + "ja": "回次" + } + }, + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711660052", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711660052[].subitem_1599711680082", + "type": "text", + "title": "Conference Sponsor", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + { + "key": "item_1617187187528[].subitem_1599711660052[].subitem_1599711686511", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Sponsor", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392", + "type": "fieldset", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711731891", + "type": "text", + "title": "Start Year", + "title_i18n": { + "en": "Start Year", + "ja": "開始年" + }, + "title_i18n_temp": { + "en": "Start Year", + "ja": "開始年" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711727603", + "type": "text", + "title": "Start Month", + "title_i18n": { + "en": "Start Month", + "ja": "開始月" + }, + "title_i18n_temp": { + "en": "Start Month", + "ja": "開始月" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711712451", + "type": "text", + "title": "Start Day", + "title_i18n": { + "en": "Start Day", + "ja": "開始日" + }, + "title_i18n_temp": { + "en": "Start Day", + "ja": "開始日" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711743722", + "type": "text", + "title": "End Year", + "title_i18n": { + "en": "End Year", + "ja": "終了年" + }, + "title_i18n_temp": { + "en": "End Year", + "ja": "終了年" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711739022", + "type": "text", + "title": "End Month", + "title_i18n": { + "en": "End Month", + "ja": "終了月" + }, + "title_i18n_temp": { + "en": "End Month", + "ja": "終了月" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711704251", + "type": "text", + "title": "Conference Date", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711735410", + "type": "text", + "title": "End Day", + "title_i18n": { + "en": "End Day", + "ja": "終了日" + }, + "title_i18n_temp": { + "en": "End Day", + "ja": "終了日" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711745532", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "title": "Conference Date", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711758470", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711758470[].subitem_1599711769260", + "type": "text", + "title": "Conference Venue", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + { + "key": "item_1617187187528[].subitem_1599711758470[].subitem_1599711775943", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Venue", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711788485", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711788485[].subitem_1599711798761", + "type": "text", + "title": "Conference Place", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + { + "key": "item_1617187187528[].subitem_1599711788485[].subitem_1599711803382", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Place", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + { + "key": "item_1617187187528[].subitem_1599711813532", + "type": "select", + "title": "Conference Country", + "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" + } + ], + "title_i18n": { + "en": "Conference Country", + "ja": "開催国" + }, + "title_i18n_temp": { + "en": "Conference Country", + "ja": "開催国" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference", + "title_i18n": { + "en": "Conference", + "ja": "会議記述" + } + }, + { + "add": "New", + "key": "item_1617605131499", + "items": [ + { + "key": "item_1617605131499[].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_1617605131499[].url", + "type": "fieldset", + "items": [ + { + "key": "item_1617605131499[].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_1617605131499[].url.label", + "type": "text", + "title": "ラベル", + "feedback": false, + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + }, + "disableSuccessState": true + }, + { + "key": "item_1617605131499[].url.objectType", + "type": "select", + "title": "オブジェクトタイプ", + "feedback": false, + "titleMap": [ + { + "name": "abstract", + "value": "abstract" + }, + { + "name": "summary", + "value": "summary" + }, + { + "name": "fulltext", + "value": "fulltext" + }, + { + "name": "thumbnail", + "value": "thumbnail" + }, + { + "name": "other", + "value": "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_1617605131499[].format", + "type": "text", + "title": "フォーマット", + "title_i18n": { + "en": "Format", + "ja": "フォーマット" + }, + "title_i18n_temp": { + "en": "Format", + "ja": "フォーマット" + } + }, + { + "add": "New", + "key": "item_1617605131499[].filesize", + "items": [ + { + "key": "item_1617605131499[].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_1617605131499[].fileDate", + "items": [ + { + "key": "item_1617605131499[].fileDate[].fileDateType", + "type": "select", + "title": "日付タイプ", + "titleMap": [ + { + "name": "Accepted", + "value": "Accepted" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Date Type", + "ja": "日付タイプ" + }, + "title_i18n_temp": { + "en": "Date Type", + "ja": "日付タイプ" + } + }, + { + "key": "item_1617605131499[].fileDate[].fileDateValue", + "type": "template", + "title": "日付", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.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_1617605131499[].version", + "type": "text", + "title": "バージョン情報", + "title_i18n": { + "en": "Version Information", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version Information", + "ja": "バージョン情報" + } + }, + { + "key": "item_1617605131499[].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_1617605131499[].licensetype", + "type": "select", + "title": "ライセンス", + "titleMap": [], + "title_i18n": { + "en": "License", + "ja": "ライセンス" + }, + "title_i18n_temp": { + "en": "License", + "ja": "ライセンス" + } + }, + { + "key": "item_1617605131499[].licensefree", + "type": "textarea", + "notitle": true, + "condition": "model.item_1617605131499[arrayIndex].licensetype == 'license_free'", + "title_i18n": { + "en": "自由ライセンス", + "ja": "自由ライセンス" + } + }, + { + "type": "template", + "title": "剽窃チェック", + "template": "
", + "title_i18n": { + "en": "Check Plagiarism", + "ja": "剽窃チェック" + } + }, + { + "key": "item_1617605131499[].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_1617605131499[].date[0].dateValue", + "type": "template", + "title": "公開日", + "format": "yyyy-MM-dd", + "condition": "model.item_1617605131499[arrayIndex].accessrole == 'open_date'", + "title_i18n": { + "en": "Opendate", + "ja": "公開日" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker.html" + }, + { + "key": "item_1617605131499[].groups", + "type": "select", + "title": "グループ", + "titleMap": [], + "condition": "model.item_1617605131499[arrayIndex].accessrole == 'open_login'", + "title_i18n": { + "en": "Group", + "ja": "グループ" + }, + "title_i18n_temp": { + "en": "Group", + "ja": "グループ" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "File", + "title_i18n": { + "en": "File", + "ja": "ファイル情報" + } + }, + { + "add": "New", + "key": "item_1617620223087", + "items": [ + { + "key": "item_1617620223087[].subitem_1565671149650", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617620223087[].subitem_1565671169640", + "type": "text", + "title": "Banner Headline", + "title_i18n": { + "en": "Banner Headline", + "ja": "大見出し" + }, + "title_i18n_temp": { + "en": "Banner Headline", + "ja": "大見出し" + } + }, + { + "key": "item_1617620223087[].subitem_1565671178623", + "type": "text", + "title": "Subheading", + "title_i18n": { + "en": "Subheading", + "ja": "小見出し" + }, + "title_i18n_temp": { + "en": "Subheading", + "ja": "小見出し" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Heading", + "title_i18n": { + "en": "Heading", + "ja": "見出し" + } + }, + { + "add": "New", + "key": "item_1662046377046", + "items": [ + { + "add": "New", + "key": "item_1662046377046[].subitem_thumbnail", + "items": [ + { + "key": "item_1662046377046[].subitem_thumbnail[].thumbnail_url", + "type": "text", + "title": "URI", + "readonly": true, + "title_i18n": { + "en": "URI", + "ja": "URI" + }, + "title_i18n_temp": { + "en": "URI", + "ja": "URI" + } + }, + { + "key": "item_1662046377046[].subitem_thumbnail[].thumbnail_label", + "type": "text", + "title": "ラベル", + "readonly": true, + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "URI", + "title_i18n": { + "en": "URI", + "ja": "URI" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "サムネイル", + "title_i18n": { + "en": "thumbnail", + "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", + "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_1617186331708": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551255647225": { + "type": "string", + "title": "Title", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "subitem_1551255648112": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "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", + "properties": { + "subitem_1551255720400": { + "type": "string", + "title": "Alternative Title", + "format": "text", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + }, + "title_i18n_temp": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + "subitem_1551255721061": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "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", + "properties": { + "iscreator": { + "type": "string", + "title": "iscreator", + "format": "text", + "uniqueKey": "item_1617186419668_iscreator", + "title_i18n": { + "en": "", + "ja": "" + } + }, + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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_i18n_temp": { + "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": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + "creatorNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者姓名", + "format": "array" + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "作成者識別子", + "format": "text", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "作成者識別子URI", + "format": "text", + "title_i18n": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + }, + "title_i18n_temp": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "作成者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "affiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + "affiliationNameIdentifierURI": { + "type": "string", + "title": "所属機関識別子URI", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "affiliationNameIdentifierScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + } + } + }, + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "creatorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者別名", + "format": "array" + } + } + }, + "title": "Creator", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186476635": { + "type": "object", + "title": "Access Rights", + "properties": { + "subitem_1522299639480": { + "enum": [ + null, + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ], + "type": [ + "null", + "string" + ], + "title": "アクセス権", + "format": "select", + "currentEnum": [ + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ] + }, + "subitem_1600958577026": { + "type": "string", + "title": "アクセス権URI", + "format": "text", + "title_i18n": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + }, + "title_i18n_temp": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + } + } + } + }, + "item_1617186499011": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522650717957": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650727486": { + "type": "string", + "title": "権利情報Resource", + "format": "text", + "title_i18n": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + }, + "title_i18n_temp": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + } + }, + "subitem_1522651041219": { + "type": "string", + "title": "権利情報", + "format": "text", + "title_i18n": { + "en": "Rights Information", + "ja": "権利情報" + }, + "title_i18n_temp": { + "en": "Rights Information", + "ja": "権利情報" + } + } + } + }, + "title": "Rights", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186609386": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522299896455": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300014469": { + "enum": [ + null, + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ], + "type": [ + "null", + "string" + ], + "title": "主題Scheme", + "format": "select", + "currentEnum": [ + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ] + }, + "subitem_1522300048512": { + "type": "string", + "title": "主題URI", + "format": "text", + "title_i18n": { + "en": "Subject URI", + "ja": "主題URI" + }, + "title_i18n_temp": { + "en": "Subject URI", + "ja": "主題URI" + } + }, + "subitem_1523261968819": { + "type": "string", + "title": "主題", + "format": "text", + "title_i18n": { + "en": "Subject", + "ja": "主題" + }, + "title_i18n_temp": { + "en": "Subject", + "ja": "主題" + } + } + } + }, + "title": "Subject", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186626617": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_description": { + "type": "string", + "title": "内容記述", + "format": "textarea", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + }, + "title_i18n_temp": { + "en": "Description", + "ja": "内容記述" + } + }, + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "properties": { + "subitem_1522300295150": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300316516": { + "type": "string", + "title": "出版者", + "format": "text", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + }, + "title_i18n_temp": { + "en": "Publisher", + "ja": "出版者" + } + } + } + }, + "title": "Publisher", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186660861": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522300695726": { + "enum": [ + null, + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ] + }, + "subitem_1522300722591": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + } + } + }, + "title": "Date", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186702042": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551255818386": { + "enum": [ + null, + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ] + } + } + }, + "title": "Language", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186783814": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_identifier_uri": { + "type": "string", + "title": "識別子", + "format": "text", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + }, + "title_i18n_temp": { + "en": "Identifier", + "ja": "識別子" + } + }, + "subitem_identifier_type": { + "enum": [ + null, + "DOI", + "HDL", + "URI" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "DOI", + "HDL", + "URI" + ] + } + } + }, + "title": "Identifier", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186819068": { + "type": "object", + "title": "Identifier Registration", + "properties": { + "subitem_identifier_reg_text": { + "type": "string", + "title": "ID登録", + "format": "text", + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + }, + "title_i18n_temp": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + "subitem_identifier_reg_type": { + "enum": [ + null, + "JaLC", + "Crossref", + "DataCite", + "PMID" + ], + "type": [ + "null", + "string" + ], + "title": "ID登録タイプ", + "format": "select", + "currentEnum": [ + "JaLC", + "Crossref", + "DataCite", + "PMID" + ] + } + } + }, + "item_1617186859717": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522658018441": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522658031721": { + "type": "string", + "title": "時間的範囲", + "format": "text", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + }, + "title_i18n_temp": { + "en": "Temporal", + "ja": "時間的範囲" + } + } + } + }, + "title": "Temporal", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186882738": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_geolocation_box": { + "type": "object", + "title": "位置情報(空間)", + "format": "object", + "properties": { + "subitem_east_longitude": { + "type": "string", + "title": "東部経度", + "format": "text", + "title_i18n": { + "en": "East Bound Longitude", + "ja": "東部経度" + }, + "title_i18n_temp": { + "en": "East Bound Longitude", + "ja": "東部経度" + } + }, + "subitem_north_latitude": { + "type": "string", + "title": "北部緯度", + "format": "text", + "title_i18n": { + "en": "North Bound Latitude", + "ja": "北部緯度" + }, + "title_i18n_temp": { + "en": "North Bound Latitude", + "ja": "北部緯度" + } + }, + "subitem_south_latitude": { + "type": "string", + "title": "南部緯度", + "format": "text", + "title_i18n": { + "en": "South Bound Latitude", + "ja": "南部緯度" + }, + "title_i18n_temp": { + "en": "South Bound Latitude", + "ja": "南部緯度" + } + }, + "subitem_west_longitude": { + "type": "string", + "title": "西部経度", + "format": "text", + "title_i18n": { + "en": "West Bound Longitude", + "ja": "西部経度" + }, + "title_i18n_temp": { + "en": "West Bound Longitude", + "ja": "西部経度" + } + } + } + }, + "subitem_geolocation_place": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_geolocation_place_text": { + "type": "string", + "title": "位置情報(自由記述)", + "format": "text", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + } + }, + "title": "位置情報(自由記述)", + "format": "array" + }, + "subitem_geolocation_point": { + "type": "object", + "title": "位置情報(点)", + "format": "object", + "properties": { + "subitem_point_latitude": { + "type": "string", + "title": "緯度", + "format": "text", + "title_i18n": { + "en": "Point Latitude", + "ja": "緯度" + }, + "title_i18n_temp": { + "en": "Point Latitude", + "ja": "緯度" + } + }, + "subitem_point_longitude": { + "type": "string", + "title": "経度", + "format": "text", + "title_i18n": { + "en": "Point Longitude", + "ja": "経度" + }, + "title_i18n_temp": { + "en": "Point Longitude", + "ja": "経度" + } + } + } + } + } + }, + "title": "Geo Location", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186901218": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522399143519": { + "type": "object", + "title": "助成機関識別子", + "format": "object", + "properties": { + "subitem_1522399281603": { + "enum": [ + null, + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "助成機関識別子タイプ", + "format": "select", + "currentEnum": [ + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ] + }, + "subitem_1522399333375": { + "type": "string", + "title": "助成機関識別子", + "format": "text", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + } + } + }, + "subitem_1522399412622": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522399416691": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522737543681": { + "type": "string", + "title": "助成機関名", + "format": "text", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + } + } + }, + "title": "助成機関名", + "format": "array" + }, + "subitem_1522399571623": { + "type": "object", + "title": "研究課題番号", + "format": "object", + "properties": { + "subitem_1522399585738": { + "type": "string", + "title": "研究課題URI", + "format": "text", + "title_i18n": { + "en": "Award URI", + "ja": "研究課題URI" + }, + "title_i18n_temp": { + "en": "Award URI", + "ja": "研究課題URI" + } + }, + "subitem_1522399628911": { + "type": "string", + "title": "研究課題番号", + "format": "text", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + } + } + }, + "subitem_1522399651758": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522721910626": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522721929892": { + "type": "string", + "title": "研究課題名", + "format": "text", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + } + }, + "title": "研究課題名", + "format": "array" + } + } + }, + "title": "Funding Reference", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186920753": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522646500366": { + "enum": [ + null, + "PISSN", + "EISSN", + "ISSN", + "NCID" + ], + "type": [ + "null", + "string" + ], + "title": "収録物識別子タイプ", + "format": "select", + "currentEnum": [ + "PISSN", + "EISSN", + "ISSN", + "NCID" + ] + }, + "subitem_1522646572813": { + "type": "string", + "title": "収録物識別子", + "format": "text", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + }, + "title_i18n_temp": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + } + } + }, + "title": "Source Identifier", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186941041": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522650068558": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650091861": { + "type": "string", + "title": "収録物名", + "format": "text", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + }, + "title_i18n_temp": { + "en": "Source Title", + "ja": "収録物名" + } + } + } + }, + "title": "Source Title", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186959569": { + "type": "object", + "title": "Volume Number", + "properties": { + "subitem_1551256328147": { + "type": "string", + "title": "Volume Number", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + } + } + }, + "item_1617186981471": { + "type": "object", + "title": "Issue Number", + "properties": { + "subitem_1551256294723": { + "type": "string", + "title": "Issue Number", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + } + } + }, + "item_1617186994930": { + "type": "object", + "title": "Number of Pages", + "properties": { + "subitem_1551256248092": { + "type": "string", + "title": "Number of Pages", + "format": "text", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Pages", + "ja": "ページ数" + } + } + } + }, + "item_1617187024783": { + "type": "object", + "title": "Page Start", + "properties": { + "subitem_1551256198917": { + "type": "string", + "title": "Page Start", + "format": "text", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + } + } + }, + "item_1617187045071": { + "type": "object", + "title": "Page End", + "properties": { + "subitem_1551256185532": { + "type": "string", + "title": "Page End", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + } + } + }, + "item_1617187056579": { + "type": "object", + "title": "Bibliographic Information", + "properties": { + "bibliographicPageEnd": { + "type": "string", + "title": "終了ページ", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + }, + "bibliographic_titles": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "bibliographic_title": { + "type": "string", + "title": "タイトル", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "bibliographic_titleLang": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + "bibliographicIssueDates": { + "type": "object", + "title": "発行日", + "format": "object", + "properties": { + "bibliographicIssueDate": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + }, + "bibliographicIssueDateType": { + "enum": [ + null, + "Issued" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Issued" + ] + } + } + }, + "bibliographicIssueNumber": { + "type": "string", + "title": "号", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + }, + "bibliographicVolumeNumber": { + "type": "string", + "title": "巻", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + }, + "bibliographicNumberOfPages": { + "type": "string", + "title": "ページ数", + "format": "text", + "title_i18n": { + "en": "Number of Page", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Page", + "ja": "ページ数" + } + } + } + }, + "item_1617187087799": { + "type": "object", + "title": "Dissertation Number", + "properties": { + "subitem_1551256171004": { + "type": "string", + "title": "Dissertation Number", + "format": "text", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + }, + "title_i18n_temp": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + } + } + }, + "item_1617187112279": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551256126428": { + "type": "string", + "title": "Degree Name", + "format": "text", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + }, + "title_i18n_temp": { + "en": "Degree Name", + "ja": "学位名" + } + }, + "subitem_1551256129013": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "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", + "properties": { + "subitem_1551256096004": { + "type": "string", + "title": "Date Granted", + "format": "datetime", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + }, + "title_i18n_temp": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + } + } + }, + "item_1617187187528": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1599711633003": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711636923": { + "type": "string", + "title": "Conference Name", + "format": "text", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + "subitem_1599711645590": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Name", + "format": "array" + }, + "subitem_1599711655652": { + "type": "string", + "title": "Conference Sequence", + "format": "text", + "title_i18n": { + "en": "Conference Sequence", + "ja": "回次" + }, + "title_i18n_temp": { + "en": "Conference Sequence", + "ja": "回次" + } + }, + "subitem_1599711660052": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711680082": { + "type": "string", + "title": "Conference Sponsor", + "format": "text", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + "subitem_1599711686511": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Sponsor", + "format": "array" + }, + "subitem_1599711699392": { + "type": "object", + "title": "Conference Date", + "format": "object", + "properties": { + "subitem_1599711704251": { + "type": "string", + "title": "Conference Date", + "format": "text", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + "subitem_1599711712451": { + "type": "string", + "title": "Start Day", + "format": "text", + "title_i18n": { + "en": "Start Day", + "ja": "開始日" + }, + "title_i18n_temp": { + "en": "Start Day", + "ja": "開始日" + } + }, + "subitem_1599711727603": { + "type": "string", + "title": "Start Month", + "format": "text", + "title_i18n": { + "en": "Start Month", + "ja": "開始月" + }, + "title_i18n_temp": { + "en": "Start Month", + "ja": "開始月" + } + }, + "subitem_1599711731891": { + "type": "string", + "title": "Start Year", + "format": "text", + "title_i18n": { + "en": "Start Year", + "ja": "開始年" + }, + "title_i18n_temp": { + "en": "Start Year", + "ja": "開始年" + } + }, + "subitem_1599711735410": { + "type": "string", + "title": "End Day", + "format": "text", + "title_i18n": { + "en": "End Day", + "ja": "終了日" + }, + "title_i18n_temp": { + "en": "End Day", + "ja": "終了日" + } + }, + "subitem_1599711739022": { + "type": "string", + "title": "End Month", + "format": "text", + "title_i18n": { + "en": "End Month", + "ja": "終了月" + }, + "title_i18n_temp": { + "en": "End Month", + "ja": "終了月" + } + }, + "subitem_1599711743722": { + "type": "string", + "title": "End Year", + "format": "text", + "title_i18n": { + "en": "End Year", + "ja": "終了年" + }, + "title_i18n_temp": { + "en": "End Year", + "ja": "終了年" + } + }, + "subitem_1599711745532": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "subitem_1599711758470": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711769260": { + "type": "string", + "title": "Conference Venue", + "format": "text", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + "subitem_1599711775943": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Venue", + "format": "array" + }, + "subitem_1599711788485": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711798761": { + "type": "string", + "title": "Conference Place", + "format": "text", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + "subitem_1599711803382": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Place", + "format": "array" + }, + "subitem_1599711813532": { + "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": "Conference Country", + "format": "select", + "currentEnum": [ + "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" + ] + } + } + }, + "title": "Conference", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617258105262": { + "type": "object", + "title": "Resource Type", + "properties": { + "resourceuri": { + "type": "string", + "title": "資源タイプ識別子", + "format": "text", + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + }, + "resourcetype": { + "enum": [ + null, + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "資源タイプ", + "format": "select", + "currentEnum": [ + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ] + } + } + }, + "item_1617265215918": { + "type": "object", + "title": "Version Type", + "properties": { + "subitem_1522305645492": { + "enum": [ + null, + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ], + "type": [ + "null", + "string" + ], + "title": "出版タイプ", + "format": "select", + "currentEnum": [ + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ] + }, + "subitem_1600292170262": { + "type": "string", + "title": "出版タイプResource", + "format": "text", + "title_i18n": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + }, + "title_i18n_temp": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + } + } + } + }, + "item_1617349709064": { + "type": "array", + "items": { + "type": "object", + "properties": { + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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", + "currentEnum": [ + "ContactPerson", + "DataCollector", + "DataCurator", + "DataManager", + "Distributor", + "Editor", + "HostingInstitution", + "Producer", + "ProjectLeader", + "ProjectManager", + "ProjectMember", + "RelatedPerson", + "Researcher", + "ResearchGroup", + "Sponsor", + "Supervisor", + "WorkPackageLeader", + "Other" + ] + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "寄与者識別子", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "寄与者識別子URI", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + }, + "title_i18n_temp": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "寄与者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + } + }, + "title": "寄与者メールアドレス", + "format": "array" + }, + "contributorNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "lang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "contributorName": { + "type": "string", + "title": "姓名", + "format": "text", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "contributorAffiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "contributorAffiliationScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + }, + "contributorAffiliationNameIdentifier": { + "type": "string", + "title": "所属機関識別子", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "contributorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "寄与者別名", + "format": "array" + } + } + }, + "title": "Contributor", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617349808926": { + "type": "object", + "title": "Version", + "properties": { + "subitem_1523263171732": { + "type": "string", + "title": "バージョン情報", + "format": "text", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version", + "ja": "バージョン情報" + } + } + } + }, + "item_1617351524846": { + "type": "object", + "title": "APC", + "properties": { + "subitem_1523260933860": { + "enum": [ + null, + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ], + "type": [ + "null", + "string" + ], + "title": "APC", + "format": "select", + "currentEnum": [ + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ] + } + } + }, + "item_1617353299429": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522306207484": { + "enum": [ + null, + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ], + "type": [ + "null", + "string" + ], + "title": "関連タイプ", + "format": "select", + "currentEnum": [ + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ] + }, + "subitem_1522306287251": { + "type": "object", + "title": "関連識別子", + "format": "object", + "properties": { + "subitem_1522306382014": { + "enum": [ + null, + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ] + }, + "subitem_1522306436033": { + "type": "string", + "title": "関連識別子", + "format": "text", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + } + } + }, + "subitem_1523320863692": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523320867455": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1523320909613": { + "type": "string", + "title": "関連名称", + "format": "text", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + } + }, + "title": "関連名称", + "format": "array" + } + } + }, + "title": "Relation", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617605131499": { + "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", + "summary", + "fulltext", + "thumbnail", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "オブジェクトタイプ", + "format": "select", + "currentEnum": [ + "abstract", + "summary", + "fulltext", + "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", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Collected", + "Copyrighted", + "Created", + "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": "File", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617610673286": { + "type": "array", + "items": { + "type": "object", + "properties": { + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "権利者識別子", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "権利者識別子URI", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "権利者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "title": "権利者識別子", + "format": "array" + }, + "rightHolderNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "rightHolderName": { + "type": "string", + "title": "権利者名", + "format": "text", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + }, + "rightHolderLanguage": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "権利者名", + "format": "array" + } + } + }, + "title": "Rights Holder", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617620223087": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1565671149650": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1565671169640": { + "type": "string", + "title": "Banner Headline", + "format": "text", + "title_i18n": { + "en": "Banner Headline", + "ja": "大見出し" + }, + "title_i18n_temp": { + "en": "Banner Headline", + "ja": "大見出し" + } + }, + "subitem_1565671178623": { + "type": "string", + "title": "Subheading", + "format": "text", + "title_i18n": { + "en": "Subheading", + "ja": "小見出し" + }, + "title_i18n_temp": { + "en": "Subheading", + "ja": "小見出し" + } + } + } + }, + "title": "Heading", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617944105607": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551256015892": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256027296": { + "type": "string", + "title": "Degree Grantor Name Identifier", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + "subitem_1551256029891": { + "enum": [ + null, + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "Degree Grantor Name Identifier Scheme", + "format": "select", + "currentEnum": [ + "kakenhi" + ] + } + } + }, + "title": "Degree Grantor Name Identifier", + "format": "array" + }, + "subitem_1551256037922": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256042287": { + "type": "string", + "title": "Degree Grantor Name", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + }, + "subitem_1551256047619": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Degree Grantor Name", + "format": "array" + } + } + }, + "title": "Degree Grantor", + "maxItems": "9999", + "minItems": "1" + }, + "item_1662046377046": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_thumbnail": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "thumbnail_url": { + "type": "string", + "title": "URI", + "format": "text", + "title_i18n": { + "en": "URI", + "ja": "URI" + }, + "title_i18n_temp": { + "en": "URI", + "ja": "URI" + } + }, + "thumbnail_label": { + "type": "string", + "title": "ラベル", + "format": "text", + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + } + } + } + }, + "title": "URI", + "format": "array" + } + } + }, + "title": "サムネイル", + "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" + } + }, + "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": "", + "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_1617186331708": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "title": { + "@value": "subitem_1551255647225", + "@attributes": { + "xml:lang": "subitem_1551255648112" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "title": { + "@value": "subitem_1551255647225" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "title": { + "@value": "subitem_1551255647225", + "@attributes": { + "xml:lang": "subitem_1551255648112" + } + } + } + }, + "item_1617186385884": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "alternative": { + "@value": "subitem_1551255720400", + "@attributes": { + "xml:lang": "subitem_1551255721061" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "title": { + "@value": "subitem_1551255720400" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "alternative": { + "@value": "subitem_1551255720400", + "@attributes": { + "xml:lang": "subitem_1551255721061" + } + } + } + }, + "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_1522299639480", + "@attributes": { + "rdf:resource": "subitem_1600958577026" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "rights": { + "@value": "subitem_1522299639480" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "accessRights": { + "@value": "subitem_1522299639480", + "@attributes": { + "rdf:resource": "subitem_1600958577026" + } + } + } + }, + "item_1617186499011": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "rights": { + "@value": "subitem_1522651041219", + "@attributes": { + "xml:lang": "subitem_1522650717957", + "rdf:resource": "subitem_1522650727486" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "rights": { + "@value": "subitem_1522651041219" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "rights": { + "@value": "subitem_1522651041219", + "@attributes": { + "xml:lang": "subitem_1522650717957", + "rdf:resource": "subitem_1522650727486" + } + } + } + }, + "item_1617186609386": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "subject": { + "@value": "subitem_1523261968819", + "@attributes": { + "xml:lang": "subitem_1522299896455", + "subjectURI": "subitem_1522300048512", + "subjectScheme": "subitem_1522300014469" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "subject": { + "@value": "subitem_1523261968819" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "subject": { + "@value": "subitem_1523261968819", + "@attributes": { + "xml:lang": "subitem_1522299896455", + "subjectURI": "subitem_1522300048512", + "subjectScheme": "subitem_1522300014469" + } + } + } + }, + "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_1522300316516", + "@attributes": { + "xml:lang": "subitem_1522300295150" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "publisher": { + "@value": "subitem_1522300316516" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "publisher": { + "@value": "subitem_1522300316516", + "@attributes": { + "xml:lang": "subitem_1522300295150" + } + } + } + }, + "item_1617186660861": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "date": { + "@value": "subitem_1522300722591", + "@attributes": { + "dateType": "subitem_1522300695726" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "date": { + "@value": "subitem_1522300722591" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "date": { + "@value": "subitem_1522300722591", + "@attributes": { + "dateType": "subitem_1522300695726" + } + } + } + }, + "item_1617186702042": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "language": { + "@value": "subitem_1551255818386" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "language": { + "@value": "subitem_1551255818386" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "language": { + "@value": "subitem_1551255818386" + } + } + }, + "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_1522658031721", + "@attributes": { + "xml:lang": "subitem_1522658018441" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "coverage": { + "@value": "subitem_1522658031721" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "temporal": { + "@value": "subitem_1522658031721", + "@attributes": { + "xml:lang": "subitem_1522658018441" + } + } + } + }, + "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_1522399651758.subitem_1522721929892", + "@attributes": { + "xml:lang": "subitem_1522399651758.subitem_1522721910626" + } + }, + "funderName": { + "@value": "subitem_1522399412622.subitem_1522737543681", + "@attributes": { + "xml:lang": "subitem_1522399412622.subitem_1522399416691" + } + }, + "awardNumber": { + "@value": "subitem_1522399571623.subitem_1522399628911", + "@attributes": { + "awardURI": "subitem_1522399571623.subitem_1522399585738" + } + }, + "funderIdentifier": { + "@value": "subitem_1522399143519.subitem_1522399333375", + "@attributes": { + "funderIdentifierType": "subitem_1522399143519.subitem_1522399281603" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "fundingReference": { + "awardTitle": { + "@value": "subitem_1522399651758.subitem_1522721929892", + "@attributes": { + "xml:lang": "subitem_1522399651758.subitem_1522721910626" + } + }, + "funderName": { + "@value": "subitem_1522399412622.subitem_1522737543681", + "@attributes": { + "xml:lang": "subitem_1522399412622.subitem_1522399416691" + } + }, + "awardNumber": { + "@value": "subitem_1522399571623.subitem_1522399628911", + "@attributes": { + "awardURI": "subitem_1522399571623.subitem_1522399585738" + } + }, + "funderIdentifier": { + "@value": "subitem_1522399143519.subitem_1522399333375", + "@attributes": { + "funderIdentifierType": "subitem_1522399143519.subitem_1522399281603" + } + } + } + } + }, + "item_1617186920753": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceIdentifier": { + "@value": "subitem_1522646572813", + "@attributes": { + "identifierType": "subitem_1522646500366" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1522646572813" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "sourceIdentifier": { + "@value": "subitem_1522646572813", + "@attributes": { + "identifierType": "subitem_1522646500366" + } + } + } + }, + "item_1617186941041": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceTitle": { + "@value": "subitem_1522650091861", + "@attributes": { + "xml:lang": "subitem_1522650068558" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1522650091861" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "sourceTitle": { + "@value": "subitem_1522650091861", + "@attributes": { + "xml:lang": "subitem_1522650068558" + } + } + } + }, + "item_1617186959569": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "volume": { + "@value": "subitem_1551256328147" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256328147" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "volume": { + "@value": "subitem_1551256328147" + } + } + }, + "item_1617186981471": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "issue": { + "@value": "subitem_1551256294723" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256294723" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "issue": { + "@value": "subitem_1551256294723" + } + } + }, + "item_1617186994930": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "numPages": { + "@value": "subitem_1551256248092" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256248092" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "numPages": { + "@value": "subitem_1551256248092" + } + } + }, + "item_1617187024783": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "pageStart": { + "@value": "subitem_1551256198917" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256198917" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "pageStart": { + "@value": "subitem_1551256198917" + } + } + }, + "item_1617187045071": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "pageEnd": { + "@value": "subitem_1551256185532" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256185532" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "pageEnd": { + "@value": "subitem_1551256185532" + } + } + }, + "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_1551256171004" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256171004" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "dissertationNumber": { + "@value": "subitem_1551256171004" + } + } + }, + "item_1617187112279": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "degreeName": { + "@value": "subitem_1551256126428", + "@attributes": { + "xml:lang": "subitem_1551256129013" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "description": { + "@value": "subitem_1551256126428" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "degreeName": { + "@value": "subitem_1551256126428", + "@attributes": { + "xml:lang": "subitem_1551256129013" + } + } + } + }, + "item_1617187136212": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "dateGranted": { + "@value": "subitem_1551256096004" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "date": { + "@value": "subitem_1551256096004" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "dateGranted": { + "@value": "subitem_1551256096004" + } + } + }, + "item_1617187187528": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "conference": { + "conferenceDate": { + "@value": "subitem_1599711699392.subitem_1599711704251", + "@attributes": { + "endDay": "subitem_1599711699392.subitem_1599711735410", + "endYear": "subitem_1599711699392.subitem_1599711743722", + "endMonth": "subitem_1599711699392.subitem_1599711739022", + "startDay": "subitem_1599711699392.subitem_1599711712451", + "xml:lang": "subitem_1599711699392.subitem_1599711745532", + "startYear": "subitem_1599711699392.subitem_1599711731891", + "startMonth": "subitem_1599711699392.subitem_1599711727603" + } + }, + "conferenceName": { + "@value": "subitem_1599711633003.subitem_1599711636923", + "@attributes": { + "xml:lang": "subitem_1599711633003.subitem_1599711645590" + } + }, + "conferenceVenue": { + "@value": "subitem_1599711758470.subitem_1599711769260", + "@attributes": { + "xml:lang": "subitem_1599711758470.subitem_1599711775943" + } + }, + "conferenceCountry": { + "@value": "subitem_1599711813532" + }, + "conferenceSponsor": { + "@value": "subitem_1599711660052.subitem_1599711680082", + "@attributes": { + "xml:lang": "subitem_1599711660052.subitem_1599711686511" + } + }, + "conferenceSequence": { + "@value": "subitem_1599711655652" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "conference": { + "conferenceDate": { + "@value": "subitem_1599711699392.subitem_1599711704251", + "@attributes": { + "endDay": "subitem_1599711699392.subitem_1599711735410", + "endYear": "subitem_1599711699392.subitem_1599711743722", + "endMonth": "subitem_1599711699392.subitem_1599711739022", + "startDay": "subitem_1599711699392.subitem_1599711712451", + "xml:lang": "subitem_1599711699392.subitem_1599711745532", + "startYear": "subitem_1599711699392.subitem_1599711731891", + "startMonth": "subitem_1599711699392.subitem_1599711727603" + } + }, + "conferenceName": { + "@value": "subitem_1599711633003.subitem_1599711636923", + "@attributes": { + "xml:lang": "subitem_1599711633003.subitem_1599711645590" + } + }, + "conferenceVenue": { + "@value": "subitem_1599711758470.subitem_1599711769260", + "@attributes": { + "xml:lang": "subitem_1599711758470.subitem_1599711775943" + } + }, + "conferenceCountry": { + "@value": "subitem_1599711813532" + }, + "conferenceSponsor": { + "@value": "subitem_1599711660052.subitem_1599711680082", + "@attributes": { + "xml:lang": "subitem_1599711660052.subitem_1599711686511" + } + }, + "conferenceSequence": { + "@value": "subitem_1599711655652" + } + } + } + }, + "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_1522305645492", + "@attributes": { + "rdf:resource": "subitem_1600292170262" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "type": { + "@value": "subitem_1522305645492" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "versiontype": { + "@value": "subitem_1522305645492", + "@attributes": { + "rdf:resource": "subitem_1600292170262" + } + } + } + }, + "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_1523263171732" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "version": { + "@value": "subitem_1523263171732" + } + } + }, + "item_1617351524846": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "apc": { + "@value": "subitem_1523260933860" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "apc": { + "@value": "subitem_1523260933860" + } + } + }, + "item_1617353299429": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "relation": { + "@attributes": { + "relationType": "subitem_1522306207484" + }, + "relatedTitle": { + "@value": "subitem_1523320863692.subitem_1523320909613", + "@attributes": { + "xml:lang": "subitem_1523320863692.subitem_1523320867455" + } + }, + "relatedIdentifier": { + "@value": "subitem_1522306287251.subitem_1522306436033", + "@attributes": { + "identifierType": "subitem_1522306287251.subitem_1522306382014" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "relation": { + "@value": "subitem_1522306287251.subitem_1522306436033,subitem_1523320863692.subitem_1523320909613" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "relation": { + "@attributes": { + "relationType": "subitem_1522306207484" + }, + "relatedTitle": { + "@value": "subitem_1523320863692.subitem_1523320909613", + "@attributes": { + "xml:lang": "subitem_1523320863692.subitem_1523320867455" + } + }, + "relatedIdentifier": { + "@value": "subitem_1522306287251.subitem_1522306436033", + "@attributes": { + "identifierType": "subitem_1522306287251.subitem_1522306382014" + } + } + } + } + }, + "item_1617605131499": { + "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": { + "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" + } + } + } + }, + "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_1551256015892.subitem_1551256027296", + "@attributes": { + "nameIdentifierScheme": "subitem_1551256015892.subitem_1551256029891" + } + }, + "degreeGrantorName": { + "@value": "subitem_1551256037922.subitem_1551256042287", + "@attributes": { + "xml:lang": "subitem_1551256037922.subitem_1551256047619" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "description": { + "@value": "subitem_1551256037922.subitem_1551256042287" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "degreeGrantor": { + "nameIdentifier": { + "@value": "subitem_1551256015892.subitem_1551256027296", + "@attributes": { + "nameIdentifierScheme": "subitem_1551256015892.subitem_1551256029891" + } + }, + "degreeGrantorName": { + "@value": "subitem_1551256037922.subitem_1551256042287", + "@attributes": { + "xml:lang": "subitem_1551256037922.subitem_1551256047619" + } + } + } + } + }, + "item_1662046377046": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": "", + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "system_identifier_doi": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + } + }, + "system_identifier_hdl": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + } + }, + "system_identifier_uri": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/modules/invenio-records-rest/tests/data/testrecords.json b/modules/invenio-records-rest/tests/data/testrecords.json index f993d13ff9..8108ce34e3 100644 --- a/modules/invenio-records-rest/tests/data/testrecords.json +++ b/modules/invenio-records-rest/tests/data/testrecords.json @@ -2,21 +2,33 @@ { "year": 2015, "stars": 4, - "title": "Back to the Future" + "title": "Back to the Future", + "_item_metadata": { + "item_type_id": 1 + } }, { "year": 2042, "stars": 3, - "title": "Back to the Past" + "title": "Back to the Past", + "_item_metadata": { + "item_type_id": 2 + } }, { "year": 1985, "stars": 4, - "title": "The Hitchhiker's Guide to the Galaxy" + "title": "The Hitchhiker's Guide to the Galaxy", + "_item_metadata": { + "item_type_id": 3 + } }, { "year": 4242, "stars": 5, - "title": "Unknown film" + "title": "Unknown film", + "_item_metadata": { + "item_type_id": 4 + } } ] diff --git a/modules/invenio-records-rest/tests/helpers.py b/modules/invenio-records-rest/tests/helpers.py index 66ccaa3124..fff0bdeb15 100644 --- a/modules/invenio-records-rest/tests/helpers.py +++ b/modules/invenio-records-rest/tests/helpers.py @@ -38,6 +38,9 @@ def create_record(data): def assert_hits_len(res, hit_length): """Assert number of hits.""" assert res.status_code == 200 + res_json = get_json(res) + if "hits" not in res_json or "hits" not in res_json["hits"]: + raise AssertionError(f"Expected 'hits' in response, but got: {res_json}") assert len(get_json(res)["hits"]["hits"]) == hit_length diff --git a/modules/invenio-records-rest/tests/item_type/15_form.json b/modules/invenio-records-rest/tests/item_type/15_form.json new file mode 100644 index 0000000000..7262596f19 --- /dev/null +++ b/modules/invenio-records-rest/tests/item_type/15_form.json @@ -0,0 +1 @@ +[{"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_1551255647225", "type": "text", "title": "Title", "title_i18n": {"en": "Title", "ja": "タイトル"}, "title_i18n_temp": {"en": "Title", "ja": "タイトル"}}, {"key": "item_1617186331708[].subitem_1551255648112", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Title", "title_i18n": {"en": "Title", "ja": "タイトル"}}, {"add": "New", "key": "item_1617186385884", "items": [{"key": "item_1617186385884[].subitem_1551255720400", "type": "text", "title": "Alternative Title", "title_i18n": {"en": "Alternative Title", "ja": "その他のタイトル"}, "title_i18n_temp": {"en": "Alternative Title", "ja": "その他のタイトル"}}, {"key": "item_1617186385884[].subitem_1551255721061", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Alternative Title", "title_i18n": {"en": "Alternative Title", "ja": "その他のタイトル"}}, {"add": "New", "key": "item_1617186419668", "items": [{"key": "item_1617186419668[].authorInputButton", "icon": "glyphicon glyphicon-search", "type": "button", "style": "btn-default pull-right m-top-5", "title": "著者DBから入力", "onClick": "searchAuthor(\"item_1617186419668\", true, form)"}, {"add": "New", "key": "item_1617186419668[].nameIdentifiers", "items": [{"key": "item_1617186419668[].nameIdentifiers[].nameIdentifierScheme", "type": "select", "title": "作成者識別子Scheme", "titleMap": [], "title_i18n": {"en": "Creator Identifier Scheme", "ja": "作成者識別子Scheme"}, "title_i18n_temp": {"en": "Creator Identifier Scheme", "ja": "作成者識別子Scheme"}}, {"key": "item_1617186419668[].nameIdentifiers[].nameIdentifierURI", "type": "text", "title": "作成者識別子URI", "title_i18n": {"en": "Creator Identifier URI", "ja": "作成者識別子URI"}, "title_i18n_temp": {"en": "Creator Identifier URI", "ja": "作成者識別子URI"}}, {"key": "item_1617186419668[].nameIdentifiers[].nameIdentifier", "type": "text", "title": "作成者識別子", "title_i18n": {"en": "Creator Identifier", "ja": "作成者識別子"}, "title_i18n_temp": {"en": "Creator Identifier", "ja": "作成者識別子"}}], "style": {"add": "btn-success"}, "title": "作成者識別子", "title_i18n": {"en": "Creator Identifier", "ja": "作成者識別子"}, "title_i18n_temp": {"en": "Creator Identifier", "ja": "作成者識別子"}}, {"add": "New", "key": "item_1617186419668[].creatorNames", "items": [{"key": "item_1617186419668[].creatorNames[].creatorName", "type": "text", "title": "姓名", "title_i18n": {"en": "Name", "ja": "姓名"}, "title_i18n_temp": {"en": "Name", "ja": "姓名"}}, {"key": "item_1617186419668[].creatorNames[].creatorNameLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "作成者姓名", "title_i18n": {"en": "Creator Name", "ja": "作成者姓名"}, "title_i18n_temp": {"en": "Creator Name", "ja": "作成者姓名"}}, {"add": "New", "key": "item_1617186419668[].familyNames", "items": [{"key": "item_1617186419668[].familyNames[].familyName", "type": "text", "title": "姓", "title_i18n": {"en": "Family Name", "ja": "姓"}, "title_i18n_temp": {"en": "Family Name", "ja": "姓"}}, {"key": "item_1617186419668[].familyNames[].familyNameLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "作成者姓", "title_i18n": {"en": "Creator Family Name", "ja": "作成者姓"}, "title_i18n_temp": {"en": "Creator Family Name", "ja": "作成者姓"}}, {"add": "New", "key": "item_1617186419668[].givenNames", "items": [{"key": "item_1617186419668[].givenNames[].givenName", "type": "text", "title": "名", "title_i18n": {"en": "Given Name", "ja": "名"}, "title_i18n_temp": {"en": "Given Name", "ja": "名"}}, {"key": "item_1617186419668[].givenNames[].givenNameLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "作成者名", "title_i18n": {"en": "Creator Given Name", "ja": "作成者名"}, "title_i18n_temp": {"en": "Creator Given Name", "ja": "作成者名"}}, {"add": "New", "key": "item_1617186419668[].creatorAlternatives", "items": [{"key": "item_1617186419668[].creatorAlternatives[].creatorAlternative", "type": "text", "title": "別名", "title_i18n": {"en": "Alternative Name", "ja": "別名"}, "title_i18n_temp": {"en": "Alternative Name", "ja": "別名"}}, {"key": "item_1617186419668[].creatorAlternatives[].creatorAlternativeLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "作成者別名", "title_i18n": {"en": "Creator Alternative Name", "ja": "作成者別名"}, "title_i18n_temp": {"en": "Creator Alternative Name", "ja": "作成者別名"}}, {"add": "New", "key": "item_1617186419668[].creatorMails", "items": [{"key": "item_1617186419668[].creatorMails[].creatorMail", "type": "text", "title": "メールアドレス", "title_i18n": {"en": "Email Address", "ja": "メールアドレス"}, "title_i18n_temp": {"en": "Email Address", "ja": "メールアドレス"}}], "style": {"add": "btn-success"}, "title": "作成者メールアドレス", "title_i18n": {"en": "Creator Email Address", "ja": "作成者メールアレス"}, "title_i18n_temp": {"en": "Creator Email Address", "ja": "作成者メールアレス"}}, {"add": "New", "key": "item_1617186419668[].creatorAffiliations", "items": [{"add": "New", "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers", "items": [{"key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifier", "type": "text", "title": "所属機関識別子", "title_i18n": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}, "title_i18n_temp": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}}, {"key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierScheme", "type": "select", "title": "所属機関識別子スキーマ", "titleMap": [{"name": "kakenhi", "value": "kakenhi"}, {"name": "ISNI", "value": "ISNI"}, {"name": "Ringgold", "value": "Ringgold"}, {"name": "GRID", "value": "GRID"}], "title_i18n": {"en": "Affiliation Name Identifier Scheme", "ja": "所属機関識別子スキーマ"}, "title_i18n_temp": {"en": "Affiliation Name Identifier Scheme", "ja": "所属機関識別子スキーマ"}}, {"key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierURI", "type": "text", "title": "所属機関識別子URI", "title_i18n": {"en": "Affiliation Name Identifier URI", "ja": "所属機関識別子URI"}, "title_i18n_temp": {"en": "Affiliation Name Identifier URI", "ja": "所属機関識別子URI"}}], "style": {"add": "btn-success"}, "title": "所属機関識別子", "title_i18n": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}, "title_i18n_temp": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}}, {"add": "New", "key": "item_1617186419668[].creatorAffiliations[].affiliationNames", "items": [{"key": "item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationName", "type": "text", "title": "所属機関名", "title_i18n": {"en": "Affiliation Name", "ja": "所属機関名"}, "title_i18n_temp": {"en": "Affiliation Name", "ja": "所属機関名"}}, {"key": "item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationNameLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "所属機関名", "title_i18n": {"en": "Affiliation Name", "ja": "所属機関名"}, "title_i18n_temp": {"en": "Affiliation Name", "ja": "所属機関名"}}], "style": {"add": "btn-success"}, "title": "作成者所属", "title_i18n": {"en": "Affiliation Name Identifier", "ja": "作成者所属"}, "title_i18n_temp": {"en": "Affiliation Name Identifier", "ja": "作成者所属"}}], "style": {"add": "btn-success"}, "title": "Creator", "title_i18n": {"en": "Creator", "ja": "作成者"}}, {"add": "New", "key": "item_1617349709064", "items": [{"key": "item_1617349709064[].contributorType", "type": "select", "title": "寄与者タイプ", "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"}], "title_i18n": {"en": "Contributor Type", "ja": "寄与者タイプ"}, "title_i18n_temp": {"en": "Contributor Type", "ja": "寄与者タイプ"}}, {"add": "New", "key": "item_1617349709064[].nameIdentifiers", "items": [{"key": "item_1617349709064[].nameIdentifiers[].nameIdentifierScheme", "type": "select", "title": "寄与者識別子Scheme", "titleMap": [], "title_i18n": {"en": "Contributor Identifier Scheme", "ja": "寄与者識別子Scheme"}, "title_i18n_temp": {"en": "Contributor Identifier Scheme", "ja": "寄与者識別子Scheme"}}, {"key": "item_1617349709064[].nameIdentifiers[].nameIdentifierURI", "type": "text", "title": "寄与者識別子URI", "title_i18n": {"en": "Contributor Identifier URI", "ja": "寄与者識別子URI"}, "title_i18n_temp": {"en": "Contributor Identifier URI", "ja": "寄与者識別子URI"}}, {"key": "item_1617349709064[].nameIdentifiers[].nameIdentifier", "type": "text", "title": "寄与者識別子", "title_i18n": {"en": "Contributor Identifier", "ja": "寄与者識別子"}, "title_i18n_temp": {"en": "Contributor Identifier", "ja": "寄与者識別子"}}], "style": {"add": "btn-success"}, "title": "寄与者識別子", "title_i18n": {"en": "Contributor Identifier", "ja": "寄与者識別子"}, "title_i18n_temp": {"en": "Contributor Identifier", "ja": "寄与者識別子"}}, {"add": "New", "key": "item_1617349709064[].contributorNames", "items": [{"key": "item_1617349709064[].contributorNames[].contributorName", "type": "text", "title": "姓名", "title_i18n": {"en": "Name", "ja": "姓名"}, "title_i18n_temp": {"en": "Name", "ja": "姓名"}}, {"key": "item_1617349709064[].contributorNames[].lang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "寄与者姓名", "title_i18n": {"en": "Contributor Name", "ja": "寄与者姓名"}, "title_i18n_temp": {"en": "Contributor Name", "ja": "寄与者姓名"}}, {"add": "New", "key": "item_1617349709064[].familyNames", "items": [{"key": "item_1617349709064[].familyNames[].familyName", "type": "text", "title": "姓", "title_i18n": {"en": "Family Name", "ja": "姓"}, "title_i18n_temp": {"en": "Family Name", "ja": "姓"}}, {"key": "item_1617349709064[].familyNames[].familyNameLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "寄与者姓", "title_i18n": {"en": "Contributor Family Name", "ja": "寄与者姓"}, "title_i18n_temp": {"en": "Contributor Family Name", "ja": "寄与者姓"}}, {"add": "New", "key": "item_1617349709064[].givenNames", "items": [{"key": "item_1617349709064[].givenNames[].givenName", "type": "text", "title": "名", "title_i18n": {"en": "Given Name", "ja": "名"}, "title_i18n_temp": {"en": "Given Name", "ja": "名"}}, {"key": "item_1617349709064[].givenNames[].givenNameLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "寄与者名", "title_i18n": {"en": "Contributor Given Name", "ja": "寄与者名"}, "title_i18n_temp": {"en": "Contributor Given Name", "ja": "寄与者名"}}, {"add": "New", "key": "item_1617349709064[].contributorAlternatives", "items": [{"key": "item_1617349709064[].contributorAlternatives[].contributorAlternative", "type": "text", "title": "別名", "title_i18n": {"en": "Alternative Name", "ja": "別名"}, "title_i18n_temp": {"en": "Alternative Name", "ja": "別名"}}, {"key": "item_1617349709064[].contributorAlternatives[].contributorAlternativeLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "寄与者別名", "title_i18n": {"en": "Contributor Alternative Name", "ja": "寄与者別名"}, "title_i18n_temp": {"en": "Contributor Alternative Name", "ja": "寄与者別名"}}, {"add": "New", "key": "item_1617349709064[].contributorAffiliations", "items": [{"add": "New", "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers", "items": [{"key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationNameIdentifier", "type": "text", "title": "所属機関識別子", "title_i18n": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}, "title_i18n_temp": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}}, {"key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationScheme", "type": "select", "title": "所属機関識別子スキーマ", "titleMap": [{"name": "kakenhi", "value": "kakenhi"}, {"name": "ISNI", "value": "ISNI"}, {"name": "Ringgold", "value": "Ringgold"}, {"name": "GRID", "value": "GRID"}], "title_i18n": {"en": "Affiliation Name Identifier Scheme", "ja": "所属機関識別子スキーマ"}, "title_i18n_temp": {"en": "Affiliation Name Identifier Scheme", "ja": "所属機関識別子スキーマ"}}, {"key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationURI", "type": "text", "title": "所属機関識別子URI", "title_i18n": {"en": "Affiliation Name Identifier URI", "ja": "所属機関識別子URI"}, "title_i18n_temp": {"en": "Affiliation Name Identifier URI", "ja": "所属機関識別子URI"}}], "style": {"add": "btn-success"}, "title": "所属機関識別子", "title_i18n": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}, "title_i18n_temp": {"en": "Affiliation Name Identifier", "ja": "所属機関識別子"}}, {"add": "New", "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames", "items": [{"key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationName", "type": "text", "title": "所属機関名", "title_i18n": {"en": "Affiliation Name", "ja": "所属機関名"}, "title_i18n_temp": {"en": "Affiliation Name", "ja": "所属機関名"}}, {"key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationNameLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "所属機関名", "title_i18n": {"en": "Affiliation Name", "ja": "所属機関名"}, "title_i18n_temp": {"en": "Affiliation Name", "ja": "所属機関名"}}], "style": {"add": "btn-success"}, "title": "寄与者所属", "title_i18n": {"en": "Affiliation Name Identifier", "ja": "寄与者所属"}, "title_i18n_temp": {"en": "Affiliation Name Identifier", "ja": "寄与者所属"}}, {"add": "New", "key": "item_1617349709064[].contributorMails", "items": [{"key": "item_1617349709064[].contributorMails[].contributorMail", "type": "text", "title": "メールアドレス", "title_i18n": {"en": "Email Address", "ja": "メールアドレス"}, "title_i18n_temp": {"en": "Email Address", "ja": "メールアドレス"}}], "style": {"add": "btn-success"}, "title": "寄与者メールアドレス", "title_i18n": {"en": "Contributor Email Address", "ja": "寄与者メールアドレス"}, "title_i18n_temp": {"en": "Contributor Email Address", "ja": "寄与者メールアドレス"}}, {"key": "item_1617349709064[].authorInputButton", "icon": "glyphicon glyphicon-search", "type": "button", "style": "btn-default pull-right m-top-5", "title": "著者DBから入力", "onClick": "searchAuthor(\"item_1617349709064\", true, form)"}], "style": {"add": "btn-success"}, "title": "Contributor", "title_i18n": {"en": "Contributor", "ja": "寄与者"}}, {"key": "item_1617186476635", "type": "fieldset", "items": [{"key": "item_1617186476635.subitem_1522299639480", "type": "select", "title": "アクセス権", "onChange": "changedAccessRights(this, modelValue)", "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"}], "title_i18n": {"en": "Access Rights", "ja": "アクセス権"}, "title_i18n_temp": {"en": "Access Rights", "ja": "アクセス権"}}, {"key": "item_1617186476635.subitem_1600958577026", "type": "text", "title": "アクセス権URI", "readonly": true, "title_i18n": {"en": "Access Rights URI", "ja": "アクセス権URI"}, "fieldHtmlClass": "txt-access-rights-uri", "title_i18n_temp": {"en": "Access Rights URI", "ja": "アクセス権URI"}}], "title": "Access Rights", "title_i18n": {"en": "Access Rights", "ja": "アクセス権"}}, {"key": "item_1617351524846", "type": "fieldset", "items": [{"key": "item_1617351524846.subitem_1523260933860", "type": "select", "title": "APC", "titleMap": [{"name": "Paid", "value": "Paid"}, {"name": "Fully waived", "value": "Fully waived"}, {"name": "Not required", "value": "Not required"}, {"name": "Partially waived", "value": "Partially waived"}, {"name": "Not charged", "value": "Not charged"}, {"name": "Unknown", "value": "Unknown"}], "title_i18n": {"en": "APC", "ja": "APC"}}], "title": "APC", "title_i18n": {"en": "APC", "ja": "APC"}}, {"add": "New", "key": "item_1617186499011", "items": [{"key": "item_1617186499011[].subitem_1522650717957", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617186499011[].subitem_1522650727486", "type": "text", "title": "権利情報Resource", "title_i18n": {"en": "Rights Information Resource", "ja": "権利情報Resource"}, "title_i18n_temp": {"en": "Rights Information Resource", "ja": "権利情報Resource"}}, {"key": "item_1617186499011[].subitem_1522651041219", "type": "text", "title": "権利情報", "title_i18n": {"en": "Rights Information", "ja": "権利情報"}, "title_i18n_temp": {"en": "Rights Information", "ja": "権利情報"}}], "style": {"add": "btn-success"}, "title": "Rights", "title_i18n": {"en": "Rights", "ja": "権利情報"}}, {"add": "New", "key": "item_1617610673286", "items": [{"add": "New", "key": "item_1617610673286[].nameIdentifiers", "items": [{"key": "item_1617610673286[].nameIdentifiers[].nameIdentifierScheme", "type": "select", "title": "権利者識別子Scheme", "titleMap": [], "title_i18n": {"en": "Right Holder Identifier Scheme", "ja": "権利者識別子Scheme"}, "title_i18n_temp": {"en": "Right Holder Identifier Scheme", "ja": "権利者識別子Scheme"}}, {"key": "item_1617610673286[].nameIdentifiers[].nameIdentifierURI", "type": "text", "title": "権利者識別子URI", "title_i18n": {"en": "Right Holder Identifier URI", "ja": "権利者識別子URI"}, "title_i18n_temp": {"en": "Right Holder Identifier URI", "ja": "権利者識別子URI"}}, {"key": "item_1617610673286[].nameIdentifiers[].nameIdentifier", "type": "text", "title": "権利者識別子", "title_i18n": {"en": "Right Holder Identifier", "ja": "権利者識別子"}, "title_i18n_temp": {"en": "Right Holder Identifier", "ja": "権利者識別子"}}], "style": {"add": "btn-success"}, "title": "権利者識別子", "title_i18n": {"en": "Right Holder Identifier", "ja": "権利者識別子"}, "title_i18n_temp": {"en": "Right Holder Identifier", "ja": "権利者識別子"}}, {"add": "New", "key": "item_1617610673286[].rightHolderNames", "items": [{"key": "item_1617610673286[].rightHolderNames[].rightHolderLanguage", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617610673286[].rightHolderNames[].rightHolderName", "type": "text", "title": "権利者名", "title_i18n": {"en": "Right Holder Name", "ja": "権利者名"}, "title_i18n_temp": {"en": "Right Holder Name", "ja": "権利者名"}}], "style": {"add": "btn-success"}, "title": "権利者名", "title_i18n": {"en": "Right Holder Name", "ja": "権利者名"}, "title_i18n_temp": {"en": "Right Holder Name", "ja": "権利者名"}}], "style": {"add": "btn-success"}, "title": "Rights Holder", "title_i18n": {"en": "Rights Holder", "ja": "権利者情報"}}, {"add": "New", "key": "item_1617186609386", "items": [{"key": "item_1617186609386[].subitem_1522299896455", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617186609386[].subitem_1522300014469", "type": "select", "title": "主題Scheme", "titleMap": [{"name": "BSH", "value": "BSH"}, {"name": "DDC", "value": "DDC"}, {"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"}], "title_i18n": {"en": "Subject Scheme", "ja": "主題Scheme"}, "title_i18n_temp": {"en": "Subject Scheme", "ja": "主題Scheme"}}, {"key": "item_1617186609386[].subitem_1522300048512", "type": "text", "title": "主題URI", "title_i18n": {"en": "Subject URI", "ja": "主題URI"}, "title_i18n_temp": {"en": "Subject URI", "ja": "主題URI"}}, {"key": "item_1617186609386[].subitem_1523261968819", "type": "text", "title": "主題", "title_i18n": {"en": "Subject", "ja": "主題"}, "title_i18n_temp": {"en": "Subject", "ja": "主題"}}], "style": {"add": "btn-success"}, "title": "Subject", "title_i18n": {"en": "Subject", "ja": "主題"}}, {"add": "New", "key": "item_1617186626617", "items": [{"key": "item_1617186626617[].subitem_description_type", "type": "select", "title": "内容記述タイプ", "titleMap": [{"name": "Abstract", "value": "Abstract"}, {"name": "Methods", "value": "Methods"}, {"name": "TableOfContents", "value": "TableOfContents"}, {"name": "TechnicalInfo", "value": "TechnicalInfo"}, {"name": "Other", "value": "Other"}], "title_i18n": {"en": "Description Type", "ja": "内容記述タイプ"}, "title_i18n_temp": {"en": "Description Type", "ja": "内容記述タイプ"}}, {"key": "item_1617186626617[].subitem_description", "type": "textarea", "title": "内容記述", "title_i18n": {"en": "Description", "ja": "内容記述"}, "title_i18n_temp": {"en": "Description", "ja": "内容記述"}}, {"key": "item_1617186626617[].subitem_description_language", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Description", "title_i18n": {"en": "Description", "ja": "内容記述"}}, {"add": "New", "key": "item_1617186643794", "items": [{"key": "item_1617186643794[].subitem_1522300295150", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617186643794[].subitem_1522300316516", "type": "text", "title": "出版者", "title_i18n": {"en": "Publisher", "ja": "出版者"}, "title_i18n_temp": {"en": "Publisher", "ja": "出版者"}}], "style": {"add": "btn-success"}, "title": "Publisher", "title_i18n": {"en": "Publisher", "ja": "出版者"}}, {"add": "New", "key": "item_1617186660861", "items": [{"key": "item_1617186660861[].subitem_1522300695726", "type": "select", "title": "日付タイプ", "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"}], "title_i18n": {"en": "Date Type", "ja": "日付タイプ"}, "title_i18n_temp": {"en": "Date Type", "ja": "日付タイプ"}}, {"key": "item_1617186660861[].subitem_1522300722591", "type": "template", "title": "日付", "format": "yyyy-MM-dd", "title_i18n": {"en": "Date", "ja": "日付"}, "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", "title_i18n_temp": {"en": "Date", "ja": "日付"}}], "style": {"add": "btn-success"}, "title": "Date", "title_i18n": {"en": "Date", "ja": "日付"}}, {"add": "New", "key": "item_1617186702042", "items": [{"key": "item_1617186702042[].subitem_1551255818386", "type": "select", "title": "Language", "titleMap": [{"name": "jpn", "value": "jpn"}, {"name": "eng", "value": "eng"}, {"name": "fra", "value": "fra"}, {"name": "ita", "value": "ita"}, {"name": "spa", "value": "spa"}, {"name": "zho", "value": "zho"}, {"name": "rus", "value": "rus"}, {"name": "lat", "value": "lat"}, {"name": "msa", "value": "msa"}, {"name": "epo", "value": "epo"}, {"name": "ara", "value": "ara"}, {"name": "ell", "value": "ell"}, {"name": "kor", "value": "kor"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Language", "title_i18n": {"en": "Language", "ja": "言語"}}, {"key": "item_1617258105262", "type": "fieldset", "items": [{"key": "item_1617258105262.resourcetype", "type": "select", "title": "資源タイプ", "onChange": "resourceTypeSelect()", "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 article", "value": "journal article"}, {"name": "newspaper", "value": "newspaper"}, {"name": "periodical", "value": "periodical"}, {"name": "review article", "value": "review article"}, {"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 object", "value": "conference object"}, {"name": "conference proceedings", "value": "conference proceedings"}, {"name": "conference poster", "value": "conference poster"}, {"name": "dataset", "value": "dataset"}, {"name": "interview", "value": "interview"}, {"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": "patent", "value": "patent"}, {"name": "internal report", "value": "internal report"}, {"name": "report", "value": "report"}, {"name": "research report", "value": "research report"}, {"name": "technical report", "value": "technical report"}, {"name": "policy report", "value": "policy report"}, {"name": "report part", "value": "report part"}, {"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": "interactive resource", "value": "interactive resource"}, {"name": "learning object", "value": "learning object"}, {"name": "manuscript", "value": "manuscript"}, {"name": "musical notation", "value": "musical notation"}, {"name": "research proposal", "value": "research proposal"}, {"name": "software", "value": "software"}, {"name": "technical documentation", "value": "technical documentation"}, {"name": "workflow", "value": "workflow"}, {"name": "other", "value": "other"}], "title_i18n": {"en": "Resource Type", "ja": "資源タイプ"}, "title_i18n_temp": {"en": "Resource Type", "ja": "資源タイプ"}}, {"key": "item_1617258105262.resourceuri", "type": "text", "title": "資源タイプ識別子", "readonly": true, "title_i18n": {"en": "Resource Type Identifier", "ja": "資源タイプ識別子"}, "title_i18n_temp": {"en": "Resource Type Identifier", "ja": "資源タイプ識別子"}}], "title": "Resource Type", "title_i18n": {"en": "Resource Type", "ja": "資源タイプ"}}, {"key": "item_1617349808926", "type": "fieldset", "items": [{"key": "item_1617349808926.subitem_1523263171732", "type": "text", "title": "バージョン情報", "title_i18n": {"en": "Version", "ja": "バージョン情報"}, "title_i18n_temp": {"en": "Version", "ja": "バージョン情報"}}], "title": "Version", "title_i18n": {"en": "Version", "ja": "バージョン情報"}}, {"key": "item_1617265215918", "type": "fieldset", "items": [{"key": "item_1617265215918.subitem_1522305645492", "type": "select", "title": "出版タイプ", "onChange": "changedVersionType(this, modelValue)", "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"}], "title_i18n": {"en": "Version Type", "ja": "出版タイプ"}, "title_i18n_temp": {"en": "Version Type", "ja": "出版タイプ"}}, {"key": "item_1617265215918.subitem_1600292170262", "type": "text", "title": "出版タイプResource", "readonly": true, "title_i18n": {"en": "Version Type Resource", "ja": "出版タイプResource"}, "fieldHtmlClass": "txt-version-resource", "title_i18n_temp": {"en": "Version Type Resource", "ja": "出版タイプResource"}}], "title": "Version Type", "title_i18n": {"en": "Version Type", "ja": "出版タイプ"}}, {"add": "New", "key": "item_1617186783814", "items": [{"key": "item_1617186783814[].subitem_identifier_uri", "type": "text", "title": "識別子", "title_i18n": {"en": "Identifier", "ja": "識別子"}, "title_i18n_temp": {"en": "Identifier", "ja": "識別子"}}, {"key": "item_1617186783814[].subitem_identifier_type", "type": "select", "title": "識別子タイプ", "titleMap": [{"name": "DOI", "value": "DOI"}, {"name": "HDL", "value": "HDL"}, {"name": "URI", "value": "URI"}], "title_i18n": {"en": "Identifier Type", "ja": "識別子タイプ"}, "title_i18n_temp": {"en": "Identifier Type", "ja": "識別子タイプ"}}], "style": {"add": "btn-success"}, "title": "Identifier", "title_i18n": {"en": "Identifier", "ja": "識別子"}}, {"key": "item_1617186819068", "type": "fieldset", "items": [{"key": "item_1617186819068.subitem_identifier_reg_text", "type": "text", "title": "ID登録", "readonly": true, "title_i18n": {"en": "Identifier Registration", "ja": "ID登録"}, "title_i18n_temp": {"en": "Identifier Registration", "ja": "ID登録"}}, {"key": "item_1617186819068.subitem_identifier_reg_type", "type": "select", "title": "ID登録タイプ", "readonly": true, "titleMap": [{"name": "JaLC", "value": "JaLC"}, {"name": "Crossref", "value": "Crossref"}, {"name": "DataCite", "value": "DataCite"}, {"name": "PMID", "value": "PMID"}], "title_i18n": {"en": "Identifier Registration Type", "ja": "ID登録タイプ"}, "title_i18n_temp": {"en": "Identifier Registration Type", "ja": "ID登録タイプ"}}], "title": "Identifier Registration", "title_i18n": {"en": "Identifier Registration", "ja": "ID登録"}}, {"add": "New", "key": "item_1617353299429", "items": [{"key": "item_1617353299429[].subitem_1522306207484", "type": "select", "title": "関連タイプ", "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": "isSupplementTo", "value": "isSupplementTo"}, {"name": "isSupplementedBy", "value": "isSupplementedBy"}, {"name": "isIdenticalTo", "value": "isIdenticalTo"}, {"name": "isDerivedFrom", "value": "isDerivedFrom"}, {"name": "isSourceOf", "value": "isSourceOf"}], "title_i18n": {"en": "Relation Type", "ja": "関連タイプ"}, "title_i18n_temp": {"en": "Relation Type", "ja": "関連タイプ"}}, {"key": "item_1617353299429[].subitem_1522306287251", "type": "fieldset", "items": [{"key": "item_1617353299429[].subitem_1522306287251.subitem_1522306382014", "type": "select", "title": "識別子タイプ", "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"}], "title_i18n": {"en": "Identifier Type", "ja": "識別子タイプ"}, "title_i18n_temp": {"en": "Identifier Type", "ja": "識別子タイプ"}}, {"key": "item_1617353299429[].subitem_1522306287251.subitem_1522306436033", "type": "text", "title": "関連識別子", "title_i18n": {"en": "Relation Identifier", "ja": "関連識別子"}, "title_i18n_temp": {"en": "Relation Identifier", "ja": "関連識別子"}}], "title": "関連識別子", "title_i18n": {"en": "Relation Identifier", "ja": "関連識別子"}, "title_i18n_temp": {"en": "Relation Identifier", "ja": "関連識別子"}}, {"add": "New", "key": "item_1617353299429[].subitem_1523320863692", "items": [{"key": "item_1617353299429[].subitem_1523320863692[].subitem_1523320867455", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617353299429[].subitem_1523320863692[].subitem_1523320909613", "type": "text", "title": "関連名称", "title_i18n": {"en": "Related Title", "ja": "関連名称"}, "title_i18n_temp": {"en": "Related Title", "ja": "関連名称"}}], "style": {"add": "btn-success"}, "title": "関連名称", "title_i18n": {"en": "Related Title", "ja": "関連名称"}, "title_i18n_temp": {"en": "Related Title", "ja": "関連名称"}}], "style": {"add": "btn-success"}, "title": "Relation", "title_i18n": {"en": "Relation", "ja": "関連情報"}}, {"add": "New", "key": "item_1617186859717", "items": [{"key": "item_1617186859717[].subitem_1522658018441", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617186859717[].subitem_1522658031721", "type": "text", "title": "時間的範囲", "title_i18n": {"en": "Temporal", "ja": "時間的範囲"}, "title_i18n_temp": {"en": "Temporal", "ja": "時間的範囲"}}], "style": {"add": "btn-success"}, "title": "Temporal", "title_i18n": {"en": "Temporal", "ja": "時間的範囲"}}, {"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": "経度", "title_i18n": {"en": "Point Longitude", "ja": "経度"}, "title_i18n_temp": {"en": "Point Longitude", "ja": "経度"}}, {"key": "item_1617186882738[].subitem_geolocation_point.subitem_point_latitude", "type": "text", "title": "緯度", "title_i18n": {"en": "Point Latitude", "ja": "緯度"}, "title_i18n_temp": {"en": "Point Latitude", "ja": "緯度"}}], "title": "位置情報(点)", "title_i18n": {"en": "Geo Location Point", "ja": "位置情報(点)"}, "title_i18n_temp": {"en": "Geo Location Point", "ja": "位置情報(点)"}}, {"key": "item_1617186882738[].subitem_geolocation_box", "type": "fieldset", "items": [{"key": "item_1617186882738[].subitem_geolocation_box.subitem_west_longitude", "type": "text", "title": "西部経度", "title_i18n": {"en": "West Bound Longitude", "ja": "西部経度"}, "title_i18n_temp": {"en": "West Bound Longitude", "ja": "西部経度"}}, {"key": "item_1617186882738[].subitem_geolocation_box.subitem_east_longitude", "type": "text", "title": "東部経度", "title_i18n": {"en": "East Bound Longitude", "ja": "東部経度"}, "title_i18n_temp": {"en": "East Bound Longitude", "ja": "東部経度"}}, {"key": "item_1617186882738[].subitem_geolocation_box.subitem_south_latitude", "type": "text", "title": "南部緯度", "title_i18n": {"en": "South Bound Latitude", "ja": "南部緯度"}, "title_i18n_temp": {"en": "South Bound Latitude", "ja": "南部緯度"}}, {"key": "item_1617186882738[].subitem_geolocation_box.subitem_north_latitude", "type": "text", "title": "北部緯度", "title_i18n": {"en": "North Bound Latitude", "ja": "北部緯度"}, "title_i18n_temp": {"en": "North Bound Latitude", "ja": "北部緯度"}}], "title": "位置情報(空間)", "title_i18n": {"en": "Geo Location Box", "ja": "位置情報(空間)"}, "title_i18n_temp": {"en": "Geo Location Box", "ja": "位置情報(空間)"}}, {"add": "New", "key": "item_1617186882738[].subitem_geolocation_place", "items": [{"key": "item_1617186882738[].subitem_geolocation_place[].subitem_geolocation_place_text", "type": "text", "title": "位置情報(自由記述)", "title_i18n": {"en": "Geo Location Place", "ja": "位置情報(自由記述)"}, "title_i18n_temp": {"en": "Geo Location Place", "ja": "位置情報(自由記述)"}}], "style": {"add": "btn-success"}, "title": "位置情報(自由記述)", "title_i18n": {"en": "Geo Location Place", "ja": "位置情報(自由記述)"}, "title_i18n_temp": {"en": "Geo Location Place", "ja": "位置情報(自由記述)"}}], "style": {"add": "btn-success"}, "title": "Geo Location", "title_i18n": {"en": "Geo Location", "ja": "位置情報"}}, {"add": "New", "key": "item_1617186901218", "items": [{"key": "item_1617186901218[].subitem_1522399143519", "type": "fieldset", "items": [{"key": "item_1617186901218[].subitem_1522399143519.subitem_1522399281603", "type": "select", "title": "助成機関識別子タイプ", "titleMap": [{"name": "Crossref Funder", "value": "Crossref Funder"}, {"name": "GRID", "value": "GRID"}, {"name": "ISNI", "value": "ISNI"}, {"name": "Other", "value": "Other"}, {"name": "kakenhi", "value": "kakenhi"}], "title_i18n": {"en": "Funder Identifier Type", "ja": "助成機関識別子タイプ"}, "title_i18n_temp": {"en": "Funder Identifier Type", "ja": "助成機関識別子タイプ"}}, {"key": "item_1617186901218[].subitem_1522399143519.subitem_1522399333375", "type": "text", "title": "助成機関識別子", "title_i18n": {"en": "Funder Identifier", "ja": "助成機関識別子"}, "title_i18n_temp": {"en": "Funder Identifier", "ja": "助成機関識別子"}}], "title": "助成機関識別子", "title_i18n": {"en": "Funder Identifier", "ja": "助成機関識別子"}, "title_i18n_temp": {"en": "Funder Identifier", "ja": "助成機関識別子"}}, {"add": "New", "key": "item_1617186901218[].subitem_1522399412622", "items": [{"key": "item_1617186901218[].subitem_1522399412622[].subitem_1522399416691", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617186901218[].subitem_1522399412622[].subitem_1522737543681", "type": "text", "title": "助成機関名", "title_i18n": {"en": "Funder Name", "ja": "助成機関名"}, "title_i18n_temp": {"en": "Funder Name", "ja": "助成機関名"}}], "style": {"add": "btn-success"}, "title": "助成機関名", "title_i18n": {"en": "Funder Name", "ja": "助成機関名"}, "title_i18n_temp": {"en": "Funder Name", "ja": "助成機関名"}}, {"key": "item_1617186901218[].subitem_1522399571623", "type": "fieldset", "items": [{"key": "item_1617186901218[].subitem_1522399571623.subitem_1522399585738", "type": "text", "title": "研究課題URI", "title_i18n": {"en": "Award URI", "ja": "研究課題URI"}, "title_i18n_temp": {"en": "Award URI", "ja": "研究課題URI"}}, {"key": "item_1617186901218[].subitem_1522399571623.subitem_1522399628911", "type": "text", "title": "研究課題番号", "title_i18n": {"en": "Award Number", "ja": "研究課題番号"}, "title_i18n_temp": {"en": "Award Number", "ja": "研究課題番号"}}], "title": "研究課題番号", "title_i18n": {"en": "Award Number", "ja": "研究課題番号"}, "title_i18n_temp": {"en": "Award Number", "ja": "研究課題番号"}}, {"add": "New", "key": "item_1617186901218[].subitem_1522399651758", "items": [{"key": "item_1617186901218[].subitem_1522399651758[].subitem_1522721910626", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617186901218[].subitem_1522399651758[].subitem_1522721929892", "type": "text", "title": "研究課題名", "title_i18n": {"en": "Award Title", "ja": "研究課題名"}, "title_i18n_temp": {"en": "Award Title", "ja": "研究課題名"}}], "style": {"add": "btn-success"}, "title": "研究課題名", "title_i18n": {"en": "Award Title", "ja": "研究課題名"}, "title_i18n_temp": {"en": "Award Title", "ja": "研究課題名"}}], "style": {"add": "btn-success"}, "title": "Funding Reference", "title_i18n": {"en": "Funding Reference", "ja": "助成情報"}}, {"add": "New", "key": "item_1617186920753", "items": [{"key": "item_1617186920753[].subitem_1522646500366", "type": "select", "title": "収録物識別子タイプ", "titleMap": [{"name": "PISSN", "value": "PISSN"}, {"name": "EISSN", "value": "EISSN"}, {"name": "ISSN", "value": "ISSN"}, {"name": "NCID", "value": "NCID"}], "title_i18n": {"en": "Source Identifier Type", "ja": "収録物識別子タイプ"}, "title_i18n_temp": {"en": "Source Identifier Type", "ja": "収録物識別子タイプ"}}, {"key": "item_1617186920753[].subitem_1522646572813", "type": "text", "title": "収録物識別子", "title_i18n": {"en": "Source Identifier", "ja": "収録物識別子"}, "title_i18n_temp": {"en": "Source Identifier", "ja": "収録物識別子"}}], "style": {"add": "btn-success"}, "title": "Source Identifier", "title_i18n": {"en": "Source Identifier", "ja": "収録物識別子"}}, {"add": "New", "key": "item_1617186941041", "items": [{"key": "item_1617186941041[].subitem_1522650068558", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617186941041[].subitem_1522650091861", "type": "text", "title": "収録物名", "title_i18n": {"en": "Source Title", "ja": "収録物名"}, "title_i18n_temp": {"en": "Source Title", "ja": "収録物名"}}], "style": {"add": "btn-success"}, "title": "Source Title", "title_i18n": {"en": "Source Title", "ja": "収録物名"}}, {"key": "item_1617186959569", "type": "fieldset", "items": [{"key": "item_1617186959569.subitem_1551256328147", "type": "text", "title": "Volume Number", "title_i18n": {"en": "Volume Number", "ja": "巻"}, "title_i18n_temp": {"en": "Volume Number", "ja": "巻"}}], "title": "Volume Number", "title_i18n": {"en": "Volume Number", "ja": "巻"}}, {"key": "item_1617186981471", "type": "fieldset", "items": [{"key": "item_1617186981471.subitem_1551256294723", "type": "text", "title": "Issue Number", "title_i18n": {"en": "Issue Number", "ja": "号"}, "title_i18n_temp": {"en": "Issue Number", "ja": "号"}}], "title": "Issue Number", "title_i18n": {"en": "Issue Number", "ja": "号"}}, {"key": "item_1617186994930", "type": "fieldset", "items": [{"key": "item_1617186994930.subitem_1551256248092", "type": "text", "title": "Number of Pages", "title_i18n": {"en": "Number of Pages", "ja": "ページ数"}, "title_i18n_temp": {"en": "Number of Pages", "ja": "ページ数"}}], "title": "Number of Pages", "title_i18n": {"en": "Number of Pages", "ja": "ページ数"}}, {"key": "item_1617187024783", "type": "fieldset", "items": [{"key": "item_1617187024783.subitem_1551256198917", "type": "text", "title": "Page Start", "title_i18n": {"en": "Page Start", "ja": "開始ページ"}, "title_i18n_temp": {"en": "Page Start", "ja": "開始ページ"}}], "title": "Page Start", "title_i18n": {"en": "Page Start", "ja": "開始ページ"}}, {"key": "item_1617187045071", "type": "fieldset", "items": [{"key": "item_1617187045071.subitem_1551256185532", "type": "text", "title": "Page End", "title_i18n": {"en": "Page End", "ja": "終了ページ"}, "title_i18n_temp": {"en": "Page End", "ja": "終了ページ"}}], "title": "Page End", "title_i18n": {"en": "Page End", "ja": "終了ページ"}}, {"key": "item_1617187056579", "type": "fieldset", "items": [{"add": "New", "key": "item_1617187056579.bibliographic_titles", "items": [{"key": "item_1617187056579.bibliographic_titles[].bibliographic_title", "type": "text", "title": "タイトル", "title_i18n": {"en": "Title", "ja": "タイトル"}, "title_i18n_temp": {"en": "Title", "ja": "タイトル"}}, {"key": "item_1617187056579.bibliographic_titles[].bibliographic_titleLang", "type": "select", "title": "言語", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "雑誌名", "title_i18n": {"en": "Journal Title", "ja": "雑誌名"}, "title_i18n_temp": {"en": "Journal Title", "ja": "雑誌名"}}, {"key": "item_1617187056579.bibliographicVolumeNumber", "type": "text", "title": "巻", "title_i18n": {"en": "Volume Number", "ja": "巻"}, "title_i18n_temp": {"en": "Volume Number", "ja": "巻"}}, {"key": "item_1617187056579.bibliographicIssueNumber", "type": "text", "title": "号", "title_i18n": {"en": "Issue Number", "ja": "号"}, "title_i18n_temp": {"en": "Issue Number", "ja": "号"}}, {"key": "item_1617187056579.bibliographicPageStart", "type": "text", "title": "開始ページ", "title_i18n": {"en": "Page Start", "ja": "開始ページ"}, "title_i18n_temp": {"en": "Page Start", "ja": "開始ページ"}}, {"key": "item_1617187056579.bibliographicPageEnd", "type": "text", "title": "終了ページ", "title_i18n": {"en": "Page End", "ja": "終了ページ"}, "title_i18n_temp": {"en": "Page End", "ja": "終了ページ"}}, {"key": "item_1617187056579.bibliographicNumberOfPages", "type": "text", "title": "ページ数", "title_i18n": {"en": "Number of Page", "ja": "ページ数"}, "title_i18n_temp": {"en": "Number of Page", "ja": "ページ数"}}, {"key": "item_1617187056579.bibliographicIssueDates", "type": "fieldset", "items": [{"key": "item_1617187056579.bibliographicIssueDates.bibliographicIssueDate", "type": "template", "title": "日付", "format": "yyyy-MM-dd", "title_i18n": {"en": "Date", "ja": "日付"}, "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", "title_i18n_temp": {"en": "Date", "ja": "日付"}}, {"key": "item_1617187056579.bibliographicIssueDates.bibliographicIssueDateType", "type": "select", "title": "日付タイプ", "titleMap": [{"name": "Issued", "value": "Issued"}], "title_i18n": {"en": "Date Type", "ja": "日付タイプ"}, "title_i18n_temp": {"en": "Date Type", "ja": "日付タイプ"}}], "title": "発行日", "title_i18n": {"en": "Issue Date", "ja": "発行日"}, "title_i18n_temp": {"en": "Issue Date", "ja": "発行日"}}], "title": "Bibliographic Information", "title_i18n": {"en": "Bibliographic Information", "ja": "書誌情報"}}, {"key": "item_1617187087799", "type": "fieldset", "items": [{"key": "item_1617187087799.subitem_1551256171004", "type": "text", "title": "Dissertation Number", "title_i18n": {"en": "Dissertation Number", "ja": "学位授与番号"}, "title_i18n_temp": {"en": "Dissertation Number", "ja": "学位授与番号"}}], "title": "Dissertation Number", "title_i18n": {"en": "Dissertation Number", "ja": "学位授与番号"}}, {"add": "New", "key": "item_1617187112279", "items": [{"key": "item_1617187112279[].subitem_1551256126428", "type": "text", "title": "Degree Name", "title_i18n": {"en": "Degree Name", "ja": "学位名"}, "title_i18n_temp": {"en": "Degree Name", "ja": "学位名"}}, {"key": "item_1617187112279[].subitem_1551256129013", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Degree Name", "title_i18n": {"en": "Degree Name", "ja": "学位名"}}, {"key": "item_1617187136212", "type": "fieldset", "items": [{"key": "item_1617187136212.subitem_1551256096004", "type": "template", "title": "Date Granted", "format": "yyyy-MM-dd", "title_i18n": {"en": "Date Granted", "ja": "学位授与年月日"}, "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", "title_i18n_temp": {"en": "Date Granted", "ja": "学位授与年月日"}}], "title": "Date Granted", "title_i18n": {"en": "Date Granted", "ja": "学位授与年月日"}}, {"add": "New", "key": "item_1617944105607", "items": [{"add": "New", "key": "item_1617944105607[].subitem_1551256015892", "items": [{"key": "item_1617944105607[].subitem_1551256015892[].subitem_1551256027296", "type": "text", "title": "Degree Grantor Name Identifier", "title_i18n": {"en": "Degree Grantor Name Identifier", "ja": "学位授与機関識別子"}, "title_i18n_temp": {"en": "Degree Grantor Name Identifier", "ja": "学位授与機関識別子"}}, {"key": "item_1617944105607[].subitem_1551256015892[].subitem_1551256029891", "type": "select", "title": "Degree Grantor Name Identifier Scheme", "titleMap": [{"name": "kakenhi", "value": "kakenhi"}], "title_i18n": {"en": "Degree Grantor Name Identifier Scheme", "ja": "学位授与機関識別子Scheme"}, "title_i18n_temp": {"en": "Degree Grantor Name Identifier Scheme", "ja": "学位授与機関識別子Scheme"}}], "style": {"add": "btn-success"}, "title": "Degree Grantor Name Identifier", "title_i18n": {"en": "Degree Grantor Name Identifier", "ja": "学位授与機関識別子"}, "title_i18n_temp": {"en": "Degree Grantor Name Identifier", "ja": "学位授与機関識別子"}}, {"add": "New", "key": "item_1617944105607[].subitem_1551256037922", "items": [{"key": "item_1617944105607[].subitem_1551256037922[].subitem_1551256042287", "type": "text", "title": "Degree Grantor Name", "title_i18n": {"en": "Degree Grantor Name", "ja": "学位授与機関名"}, "title_i18n_temp": {"en": "Degree Grantor Name", "ja": "学位授与機関名"}}, {"key": "item_1617944105607[].subitem_1551256037922[].subitem_1551256047619", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Degree Grantor Name", "title_i18n": {"en": "Degree Grantor Name", "ja": "学位授与機関名"}, "title_i18n_temp": {"en": "Degree Grantor Name", "ja": "学位授与機関名"}}], "style": {"add": "btn-success"}, "title": "Degree Grantor", "title_i18n": {"en": "Degree Grantor", "ja": "学位授与機関"}}, {"add": "New", "key": "item_1617187187528", "items": [{"add": "New", "key": "item_1617187187528[].subitem_1599711633003", "items": [{"key": "item_1617187187528[].subitem_1599711633003[].subitem_1599711636923", "type": "text", "title": "Conference Name", "title_i18n": {"en": "Conference Name", "ja": "会議名"}, "title_i18n_temp": {"en": "Conference Name", "ja": "会議名"}}, {"key": "item_1617187187528[].subitem_1599711633003[].subitem_1599711645590", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Conference Name", "title_i18n": {"en": "Conference Name", "ja": "会議名"}, "title_i18n_temp": {"en": "Conference Name", "ja": "会議名"}}, {"key": "item_1617187187528[].subitem_1599711655652", "type": "text", "title": "Conference Sequence", "title_i18n": {"en": "Conference Sequence", "ja": "回次"}, "title_i18n_temp": {"en": "Conference Sequence", "ja": "回次"}}, {"add": "New", "key": "item_1617187187528[].subitem_1599711660052", "items": [{"key": "item_1617187187528[].subitem_1599711660052[].subitem_1599711680082", "type": "text", "title": "Conference Sponsor", "title_i18n": {"en": "Conference Sponsor", "ja": "主催機関"}, "title_i18n_temp": {"en": "Conference Sponsor", "ja": "主催機関"}}, {"key": "item_1617187187528[].subitem_1599711660052[].subitem_1599711686511", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Conference Sponsor", "title_i18n": {"en": "Conference Sponsor", "ja": "主催機関"}, "title_i18n_temp": {"en": "Conference Sponsor", "ja": "主催機関"}}, {"key": "item_1617187187528[].subitem_1599711699392", "type": "fieldset", "items": [{"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711731891", "type": "text", "title": "Start Year", "title_i18n": {"en": "Start Year", "ja": "開始年"}, "title_i18n_temp": {"en": "Start Year", "ja": "開始年"}}, {"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711727603", "type": "text", "title": "Start Month", "title_i18n": {"en": "Start Month", "ja": "開始月"}, "title_i18n_temp": {"en": "Start Month", "ja": "開始月"}}, {"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711712451", "type": "text", "title": "Start Day", "title_i18n": {"en": "Start Day", "ja": "開始日"}, "title_i18n_temp": {"en": "Start Day", "ja": "開始日"}}, {"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711743722", "type": "text", "title": "End Year", "title_i18n": {"en": "End Year", "ja": "終了年"}, "title_i18n_temp": {"en": "End Year", "ja": "終了年"}}, {"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711739022", "type": "text", "title": "End Month", "title_i18n": {"en": "End Month", "ja": "終了月"}, "title_i18n_temp": {"en": "End Month", "ja": "終了月"}}, {"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711704251", "type": "text", "title": "Conference Date", "title_i18n": {"en": "Conference Date", "ja": "開催期間"}, "title_i18n_temp": {"en": "Conference Date", "ja": "開催期間"}}, {"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711735410", "type": "text", "title": "End Day", "title_i18n": {"en": "End Day", "ja": "終了日"}, "title_i18n_temp": {"en": "End Day", "ja": "終了日"}}, {"key": "item_1617187187528[].subitem_1599711699392.subitem_1599711745532", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "title": "Conference Date", "title_i18n": {"en": "Conference Date", "ja": "開催期間"}, "title_i18n_temp": {"en": "Conference Date", "ja": "開催期間"}}, {"add": "New", "key": "item_1617187187528[].subitem_1599711758470", "items": [{"key": "item_1617187187528[].subitem_1599711758470[].subitem_1599711769260", "type": "text", "title": "Conference Venue", "title_i18n": {"en": "Conference Venue", "ja": "開催会場"}, "title_i18n_temp": {"en": "Conference Venue", "ja": "開催会場"}}, {"key": "item_1617187187528[].subitem_1599711758470[].subitem_1599711775943", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Conference Venue", "title_i18n": {"en": "Conference Venue", "ja": "開催会場"}, "title_i18n_temp": {"en": "Conference Venue", "ja": "開催会場"}}, {"add": "New", "key": "item_1617187187528[].subitem_1599711788485", "items": [{"key": "item_1617187187528[].subitem_1599711788485[].subitem_1599711798761", "type": "text", "title": "Conference Place", "title_i18n": {"en": "Conference Place", "ja": "開催地"}, "title_i18n_temp": {"en": "Conference Place", "ja": "開催地"}}, {"key": "item_1617187187528[].subitem_1599711788485[].subitem_1599711803382", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}], "style": {"add": "btn-success"}, "title": "Conference Place", "title_i18n": {"en": "Conference Place", "ja": "開催地"}, "title_i18n_temp": {"en": "Conference Place", "ja": "開催地"}}, {"key": "item_1617187187528[].subitem_1599711813532", "type": "select", "title": "Conference Country", "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"}], "title_i18n": {"en": "Conference Country", "ja": "開催国"}, "title_i18n_temp": {"en": "Conference Country", "ja": "開催国"}}], "style": {"add": "btn-success"}, "title": "Conference", "title_i18n": {"en": "Conference", "ja": "会議記述"}}, {"add": "New", "key": "item_1617605131499", "items": [{"key": "item_1617605131499[].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_1617605131499[].url", "type": "fieldset", "items": [{"key": "item_1617605131499[].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_1617605131499[].url.label", "type": "text", "title": "ラベル", "feedback": false, "title_i18n": {"en": "Label", "ja": "ラベル"}, "title_i18n_temp": {"en": "Label", "ja": "ラベル"}, "disableSuccessState": true}, {"key": "item_1617605131499[].url.objectType", "type": "select", "title": "オブジェクトタイプ", "feedback": false, "titleMap": [{"name": "abstract", "value": "abstract"}, {"name": "summary", "value": "summary"}, {"name": "fulltext", "value": "fulltext"}, {"name": "thumbnail", "value": "thumbnail"}, {"name": "other", "value": "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_1617605131499[].format", "type": "text", "title": "フォーマット", "title_i18n": {"en": "Format", "ja": "フォーマット"}, "title_i18n_temp": {"en": "Format", "ja": "フォーマット"}}, {"add": "New", "key": "item_1617605131499[].filesize", "items": [{"key": "item_1617605131499[].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_1617605131499[].fileDate", "items": [{"key": "item_1617605131499[].fileDate[].fileDateType", "type": "select", "title": "日付タイプ", "titleMap": [{"name": "Accepted", "value": "Accepted"}, {"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"}], "title_i18n": {"en": "Date Type", "ja": "日付タイプ"}, "title_i18n_temp": {"en": "Date Type", "ja": "日付タイプ"}}, {"key": "item_1617605131499[].fileDate[].fileDateValue", "type": "template", "title": "日付", "format": "yyyy-MM-dd", "title_i18n": {"en": "Date", "ja": "日付"}, "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.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_1617605131499[].version", "type": "text", "title": "バージョン情報", "title_i18n": {"en": "Version Information", "ja": "バージョン情報"}, "title_i18n_temp": {"en": "Version Information", "ja": "バージョン情報"}}, {"key": "item_1617605131499[].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_1617605131499[].licensetype", "type": "select", "title": "ライセンス", "titleMap": [], "title_i18n": {"en": "License", "ja": "ライセンス"}, "title_i18n_temp": {"en": "License", "ja": "ライセンス"}}, {"key": "item_1617605131499[].licensefree", "type": "textarea", "notitle": true, "condition": "model.item_1617605131499[arrayIndex].licensetype == \"license_free\"", "title_i18n": {"en": "自由ライセンス", "ja": "自由ライセンス"}}, {"type": "template", "title": "剽窃チェック", "template": "", "title_i18n": {"en": "Check Plagiarism", "ja": "剽窃チェック"}}, {"key": "item_1617605131499[].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_1617605131499[].date[0].dateValue", "type": "template", "title": "公開日", "format": "yyyy-MM-dd", "condition": "model.item_1617605131499[arrayIndex].accessrole == \"open_date\"", "title_i18n": {"en": "Opendate", "ja": "公開日"}, "templateUrl": "/static/templates/weko_deposit/datepicker.html"}, {"key": "item_1617605131499[].groups", "type": "select", "title": "グループ", "titleMap": [], "condition": "model.item_1617605131499[arrayIndex].accessrole == \"open_login\"", "title_i18n": {"en": "Group", "ja": "グループ"}, "title_i18n_temp": {"en": "Group", "ja": "グループ"}}], "style": {"add": "btn-success"}, "title": "File", "title_i18n": {"en": "File", "ja": "ファイル情報"}}, {"add": "New", "key": "item_1617620223087", "items": [{"key": "item_1617620223087[].subitem_1565671149650", "type": "select", "title": "Language", "titleMap": [{"name": "ja", "value": "ja"}, {"name": "ja-Kana", "value": "ja-Kana"}, {"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"}], "title_i18n": {"en": "Language", "ja": "言語"}, "title_i18n_temp": {"en": "Language", "ja": "言語"}}, {"key": "item_1617620223087[].subitem_1565671169640", "type": "text", "title": "Banner Headline", "title_i18n": {"en": "Banner Headline", "ja": "大見出し"}, "title_i18n_temp": {"en": "Banner Headline", "ja": "大見出し"}}, {"key": "item_1617620223087[].subitem_1565671178623", "type": "text", "title": "Subheading", "title_i18n": {"en": "Subheading", "ja": "小見出し"}, "title_i18n_temp": {"en": "Subheading", "ja": "小見出し"}}], "style": {"add": "btn-success"}, "title": "Heading", "title_i18n": {"en": "Heading", "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": "ファイル情報"}}] \ No newline at end of file diff --git a/modules/invenio-records-rest/tests/item_type/15_item_type_mapping.json b/modules/invenio-records-rest/tests/item_type/15_item_type_mapping.json new file mode 100644 index 0000000000..0fa4d81147 --- /dev/null +++ b/modules/invenio-records-rest/tests/item_type/15_item_type_mapping.json @@ -0,0 +1,784 @@ +{ + "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_1617186331708": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "title": { + "@value": "subitem_1551255647225", + "@attributes": { "xml:lang": "subitem_1551255648112" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "title": { "@value": "subitem_1551255647225" } }, + "display_lang_type": "" + }, + "item_1617186385884": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "alternative": { + "@value": "subitem_1551255720400", + "@attributes": { "xml:lang": "subitem_1551255721061" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "title": { "@value": "subitem_1551255720400" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617186476635": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "accessRights": { + "@value": "subitem_1522299639480", + "@attributes": { "rdf:resource": "subitem_1600958577026" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "rights": { "@value": "subitem_1522299639480" } }, + "display_lang_type": "" + }, + "item_1617186499011": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "rights": { + "@value": "subitem_1522651041219", + "@attributes": { + "xml:lang": "subitem_1522650717957", + "rdf:resource": "subitem_1522650727486" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "rights": { "@value": "subitem_1522651041219" } }, + "display_lang_type": "" + }, + "item_1617186609386": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "subject": { + "@value": "subitem_1523261968819", + "@attributes": { + "xml:lang": "subitem_1522299896455", + "subjectURI": "subitem_1522300048512", + "subjectScheme": "subitem_1522300014469" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "subject": { "@value": "subitem_1523261968819" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617186643794": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "publisher": { + "@value": "subitem_1522300316516", + "@attributes": { "xml:lang": "subitem_1522300295150" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "publisher": { "@value": "subitem_1522300316516" } }, + "display_lang_type": "" + }, + "item_1617186660861": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "date": { + "@value": "subitem_1522300722591", + "@attributes": { "dateType": "subitem_1522300695726" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "date": { "@value": "subitem_1522300722591" } }, + "display_lang_type": "" + }, + "item_1617186702042": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "language": { "@value": "subitem_1551255818386" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "language": { "@value": "subitem_1551255818386" } }, + "display_lang_type": "" + }, + "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": "" + }, + "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": "" + }, + "item_1617186859717": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "temporal": { + "@value": "subitem_1522658031721", + "@attributes": { "xml:lang": "subitem_1522658018441" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "coverage": { "@value": "subitem_1522658031721" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617186901218": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "fundingReference": { + "awardTitle": { + "@value": "subitem_1522399651758.subitem_1522721929892", + "@attributes": { + "xml:lang": "subitem_1522399651758.subitem_1522721910626" + } + }, + "funderName": { + "@value": "subitem_1522399412622.subitem_1522737543681", + "@attributes": { + "xml:lang": "subitem_1522399412622.subitem_1522399416691" + } + }, + "awardNumber": { + "@value": "subitem_1522399571623.subitem_1522399628911", + "@attributes": { + "awardURI": "subitem_1522399571623.subitem_1522399585738" + } + }, + "funderIdentifier": { + "@value": "subitem_1522399143519.subitem_1522399333375", + "@attributes": { + "funderIdentifierType": "subitem_1522399143519.subitem_1522399281603" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617186920753": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceIdentifier": { + "@value": "subitem_1522646572813", + "@attributes": { "identifierType": "subitem_1522646500366" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1522646572813" } }, + "display_lang_type": "" + }, + "item_1617186941041": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceTitle": { + "@value": "subitem_1522650091861", + "@attributes": { "xml:lang": "subitem_1522650068558" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1522650091861" } }, + "display_lang_type": "" + }, + "item_1617186959569": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "volume": { "@value": "subitem_1551256328147" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256328147" } }, + "display_lang_type": "" + }, + "item_1617186981471": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "issue": { "@value": "subitem_1551256294723" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256294723" } }, + "display_lang_type": "" + }, + "item_1617186994930": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "numPages": { "@value": "subitem_1551256248092" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256248092" } }, + "display_lang_type": "" + }, + "item_1617187024783": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "pageStart": { "@value": "subitem_1551256198917" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256198917" } }, + "display_lang_type": "" + }, + "item_1617187045071": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "pageEnd": { "@value": "subitem_1551256185532" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256185532" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617187087799": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "dissertationNumber": { "@value": "subitem_1551256171004" } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256171004" } }, + "display_lang_type": "" + }, + "item_1617187112279": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "degreeName": { + "@value": "subitem_1551256126428", + "@attributes": { "xml:lang": "subitem_1551256129013" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "description": { "@value": "subitem_1551256126428" } }, + "display_lang_type": "" + }, + "item_1617187136212": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "dateGranted": { "@value": "subitem_1551256096004" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "date": { "@value": "subitem_1551256096004" } }, + "display_lang_type": "" + }, + "item_1617187187528": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "conference": { + "conferenceDate": { + "@value": "subitem_1599711699392.subitem_1599711704251", + "@attributes": { + "endDay": "subitem_1599711699392.subitem_1599711735410", + "endYear": "subitem_1599711699392.subitem_1599711743722", + "endMonth": "subitem_1599711699392.subitem_1599711739022", + "startDay": "subitem_1599711699392.subitem_1599711712451", + "xml:lang": "subitem_1599711699392.subitem_1599711745532", + "startYear": "subitem_1599711699392.subitem_1599711731891", + "startMonth": "subitem_1599711699392.subitem_1599711727603" + } + }, + "conferenceName": { + "@value": "subitem_1599711633003.subitem_1599711636923", + "@attributes": { + "xml:lang": "subitem_1599711633003.subitem_1599711645590" + } + }, + "conferenceVenue": { + "@value": "subitem_1599711758470.subitem_1599711769260", + "@attributes": { + "xml:lang": "subitem_1599711758470.subitem_1599711775943" + } + }, + "conferenceCountry": { "@value": "subitem_1599711813532" }, + "conferenceSponsor": { + "@value": "subitem_1599711660052.subitem_1599711680082", + "@attributes": { + "xml:lang": "subitem_1599711660052.subitem_1599711686511" + } + }, + "conferenceSequence": { "@value": "subitem_1599711655652" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "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": "" + }, + "item_1617265215918": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "versiontype": { + "@value": "subitem_1522305645492", + "@attributes": { "rdf:resource": "subitem_1600292170262" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "type": { "@value": "subitem_1522305645492" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617349808926": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "version": { "@value": "subitem_1523263171732" } }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617351524846": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "apc": { "@value": "subitem_1523260933860" } }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617353299429": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "relation": { + "@attributes": { "relationType": "subitem_1522306207484" }, + "relatedTitle": { + "@value": "subitem_1523320863692.subitem_1523320909613", + "@attributes": { + "xml:lang": "subitem_1523320863692.subitem_1523320867455" + } + }, + "relatedIdentifier": { + "@value": "subitem_1522306287251.subitem_1522306436033", + "@attributes": { + "identifierType": "subitem_1522306287251.subitem_1522306382014" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "relation": { + "@value": "subitem_1522306287251.subitem_1522306436033,subitem_1523320863692.subitem_1523320909613" + } + }, + "display_lang_type": "" + }, + "item_1617605131499": { + "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": "" + }, + "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": "" + }, + "item_1617620223087": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": "", + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617944105607": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "degreeGrantor": { + "nameIdentifier": { + "@value": "subitem_1551256015892.subitem_1551256027296", + "@attributes": { + "nameIdentifierScheme": "subitem_1551256015892.subitem_1551256029891" + } + }, + "degreeGrantorName": { + "@value": "subitem_1551256037922.subitem_1551256042287", + "@attributes": { + "xml:lang": "subitem_1551256037922.subitem_1551256047619" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "description": { "@value": "subitem_1551256037922.subitem_1551256042287" } + }, + "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": "" + } + } diff --git a/modules/invenio-records-rest/tests/item_type/15_mapping.json b/modules/invenio-records-rest/tests/item_type/15_mapping.json new file mode 100644 index 0000000000..a65ac394ed --- /dev/null +++ b/modules/invenio-records-rest/tests/item_type/15_mapping.json @@ -0,0 +1,167 @@ +{ + "settings": { + "number_of_shards": 1, + "number_of_replicas": 1, + "max_result_window":1000000, + "analysis": { + "tokenizer": { + "ja_tokenizer": { + "type": "kuromoji_tokenizer", + "mode": "search" + }, + "ngram_tokenizer": { + "type": "nGram", + "min_gram": 2, + "max_gram": 3, + "token_chars": [ + "letter", + "digit" + ] + } + }, + "analyzer": { + "ja_analyzer": { + "tokenizer": "ja_tokenizer", + "filter": [ + "kuromoji_baseform", + "kuromoji_part_of_speech", + "cjk_width", + "stop", + "kuromoji_stemmer", + "lowercase" + ] + }, + "ngram_analyzer": { + "type": "custom", + "char_filter": [ + "html_strip" + ], + "tokenizer": "ngram_tokenizer", + "filter": [ + "cjk_width", + "lowercase" + ] + }, + "wk_analyzer": { + "type": "custom", + "char_filter": [ + "html_strip" + ], + "tokenizer": "standard", + "filter": [ + "lowercase", + "cjk_width" + ] + }, + "paths": { + "tokenizer": "path_hierarchy" + } + } + } + }, + "mappings": { + "properties": { + "pk_id": { + "type": "keyword" + }, + "authorNameInfo": { + "type": "object", + "properties": { + "familyName": { + "type": "text" + }, + "firstName": { + "type": "text" + }, + "fullName": { + "type": "text", + "fields": { + "raw": { + "type": "keyword", + "index": true + } + } + }, + "language": { + "type": "text", + "index": false + }, + "nameFormat": { + "type": "text", + "index": false + }, + "nameShowFlg": { + "type": "boolean" + } + } + }, + "authorIdInfo": { + "type": "object", + "properties": { + "authorId": { + "type": "text" + }, + "idType": { + "type": "text", + "index": false + }, + "authorIdShowFlg": { + "type": "boolean" + } + } + }, + "emailInfo": { + "type": "object", + "properties": { + "email": { + "type": "text", + "fields": { + "raw": { + "type": "keyword", + "index": true + } + } + } + } + }, + "affiliationInfo": { + "type": "object", + "properties": { + "identifierInfo": { + "type": "object", + "properties": { + "affiliationId": { + "type": "text" + }, + "affiliationIdType": { + "type": "text", + "index": false + }, + "identifierShowFlg": { + "type": "boolean" + } + } + }, + "affiliationNameInfo": { + "type": "object", + "properties": { + "affiliationName": { + "type": "text", + "index": false + }, + "affiliationNameLang": { + "type": "text" + }, + "affiliationNameShowFlg": { + "type": "boolean" + } + } + } + } + }, + "is_deleted": { + "type": "boolean" + } + } + } + } \ No newline at end of file diff --git a/modules/invenio-records-rest/tests/item_type/15_render.json b/modules/invenio-records-rest/tests/item_type/15_render.json new file mode 100644 index 0000000000..345a977cc7 --- /dev/null +++ b/modules/invenio-records-rest/tests/item_type/15_render.json @@ -0,0 +1,1150 @@ +{ + "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_1671508244520": { + "title": "Title", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": false, + "required": true, + "showlist": false + }, + "input_type": "cus_67", + "title_i18n": { "en": "", "ja": "" }, + "input_value": "", + "input_maxItems": "9999", + "input_minItems": "1" + }, + "item_1671508260839": { + "title": "Resource Type", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": false, + "required": true, + "showlist": false + }, + "input_type": "cus_8", + "title_i18n": { "en": "", "ja": "" }, + "input_value": "", + "input_maxItems": "9999", + "input_minItems": "1" + }, + "item_1671508308460": { + "title": "test_text_array", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": true, + "required": false, + "showlist": false + }, + "input_type": "text", + "title_i18n": { "en": "", "ja": "" }, + "input_value": "", + "input_maxItems": "3", + "input_minItems": "1" + }, + "item_1671606815997": { + "title": "test_text", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": false, + "required": false, + "showlist": false + }, + "input_type": "text", + "title_i18n": { "en": "", "ja": "" }, + "input_value": "", + "input_maxItems": "9999", + "input_minItems": "1" + } + }, + "table_row": [ + "item_1671508244520", + "item_1671508260839", + "item_1671508308460", + "item_1671606815997" + ], + "edit_notes": { + "item_1671508244520": "", + "item_1671508260839": "", + "item_1671508308460": "", + "item_1671606815997": "" + }, + "meta_system": { + "system_file": { + "title": "File Information", + "option": { + "crtf": false, + "hidden": true, + "oneline": false, + "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, + "oneline": false, + "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, + "oneline": false, + "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, + "oneline": false, + "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_1671508244520": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551255647225": { + "type": "string", + "title": "Title", + "format": "text", + "title_i18n": { "en": "Title", "ja": "タイトル" } + }, + "subitem_1551255648112": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": ["null", "string"], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1671508260839": { + "type": "object", + "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 article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ], + "type": ["null", "string"], + "title": "資源タイプ", + "format": "select", + "currentEnum": [ + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ] + } + } + } + } + }, + "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_1671508244520", + "type": "fieldset", + "items": [ + { + "key": "item_1671508244520.subitem_1551255647225", + "type": "text", + "title": "Title", + "title_i18n": { "en": "Title", "ja": "タイトル" }, + "title_i18n_temp": { "en": "Title", "ja": "タイトル" } + }, + { + "key": "item_1671508244520.subitem_1551255648112", + "type": "select", + "title": "Language", + "titleMap": [ + { "name": "ja", "value": "ja" }, + { "name": "ja-Kana", "value": "ja-Kana" }, + { "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" } + ], + "title_i18n": { "en": "Language", "ja": "言語" }, + "title_i18n_temp": { "en": "Language", "ja": "言語" } + } + ], + "title": "Title", + "title_i18n": { "en": "", "ja": "" } + }, + { + "key": "item_1671508260839", + "type": "fieldset", + "items": [ + { + "key": "item_1671508260839.resourcetype", + "type": "select", + "title": "資源タイプ", + "onChange": "resourceTypeSelect()", + "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 article", "value": "journal article" }, + { "name": "newspaper", "value": "newspaper" }, + { "name": "periodical", "value": "periodical" }, + { "name": "review article", "value": "review article" }, + { "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 object", "value": "conference object" }, + { + "name": "conference proceedings", + "value": "conference proceedings" + }, + { "name": "conference poster", "value": "conference poster" }, + { "name": "dataset", "value": "dataset" }, + { "name": "interview", "value": "interview" }, + { "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": "patent", "value": "patent" }, + { "name": "internal report", "value": "internal report" }, + { "name": "report", "value": "report" }, + { "name": "research report", "value": "research report" }, + { "name": "technical report", "value": "technical report" }, + { "name": "policy report", "value": "policy report" }, + { "name": "report part", "value": "report part" }, + { "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": "interactive resource", + "value": "interactive resource" + }, + { "name": "learning object", "value": "learning object" }, + { "name": "manuscript", "value": "manuscript" }, + { "name": "musical notation", "value": "musical notation" }, + { "name": "research proposal", "value": "research proposal" }, + { "name": "software", "value": "software" }, + { + "name": "technical documentation", + "value": "technical documentation" + }, + { "name": "workflow", "value": "workflow" }, + { "name": "other", "value": "other" } + ], + "title_i18n": { "en": "Resource Type", "ja": "資源タイプ" }, + "title_i18n_temp": { "en": "Resource Type", "ja": "資源タイプ" } + }, + { + "key": "item_1671508260839.resourceuri", + "type": "text", + "title": "資源タイプ識別子", + "readonly": true, + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + } + ], + "title": "Resource Type", + "title_i18n": { "en": "", "ja": "" } + }, + { + "add": "New", + "key": "item_1671508308460", + "items": [ + { + "key": "item_1671508308460[].interim", + "type": "text", + "notitle": true + } + ], + "style": { "add": "btn-success" }, + "title_i18n": { "en": "", "ja": "" } + }, + { + "key": "item_1671606815997", + "type": "text", + "title": "test_text", + "title_i18n": { "en": "", "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": "test_import_test", + "action": "new", + "schema": { + "type": "object", + "$schema": "http://json-schema.org/draft-04/schema#", + "required": ["pubdate", "item_1671508244520", "item_1671508260839"], + "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_1671508244520": { + "type": "object", + "title": "Title", + "properties": { + "subitem_1551255647225": { + "type": "string", + "title": "Title", + "format": "text", + "title_i18n": { "en": "Title", "ja": "タイトル" } + }, + "subitem_1551255648112": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": ["null", "string"], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1671508260839": { + "type": "object", + "title": "Resource Type", + "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 article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ], + "type": ["null", "string"], + "title": "資源タイプ", + "format": "select", + "currentEnum": [ + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ] + } + } + }, + "item_1671508308460": { + "type": "array", + "items": { + "type": "object", + "properties": { "interim": { "type": "string" } } + }, + "title": "test_text_array", + "maxItems": "3", + "minItems": "1" + }, + "item_1671606815997": { + "type": "string", + "title": "test_text", + "format": "text" + }, + "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_1671508244520": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "title": { + "@value": "subitem_1551255647225", + "@attributes": { "xml:lang": "subitem_1551255648112" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1671508260839": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "type": { + "@value": "resourcetype", + "@attributes": { "rdf:resource": "resourceuri" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1671508308460": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": "", + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1671606815997": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": "", + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "system_identifier_doi": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "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": { + "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": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + } + } + } +} diff --git a/modules/invenio-records-rest/tests/item_type/15_schema.json b/modules/invenio-records-rest/tests/item_type/15_schema.json new file mode 100644 index 0000000000..e0431330dd --- /dev/null +++ b/modules/invenio-records-rest/tests/item_type/15_schema.json @@ -0,0 +1,4808 @@ +{ + "type": "object", + "$schema": "http://json-schema.org/draft-04/schema#", + "required": [ + "pubdate", + "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_1617186331708": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551255647225": { + "type": "string", + "title": "Title", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "subitem_1551255648112": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "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", + "properties": { + "subitem_1551255720400": { + "type": "string", + "title": "Alternative Title", + "format": "text", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + }, + "title_i18n_temp": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + "subitem_1551255721061": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "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", + "properties": { + "iscreator": { + "type": "string", + "title": "iscreator", + "format": "text", + "uniqueKey": "item_1617186419668_iscreator", + "title_i18n": { + "en": "", + "ja": "" + } + }, + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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_i18n_temp": { + "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": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + "creatorNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者姓名", + "format": "array" + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "作成者識別子", + "format": "text", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "作成者識別子URI", + "format": "text", + "title_i18n": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + }, + "title_i18n_temp": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "作成者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "affiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + "affiliationNameIdentifierURI": { + "type": "string", + "title": "所属機関識別子URI", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "affiliationNameIdentifierScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + } + } + }, + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "creatorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者別名", + "format": "array" + } + } + }, + "title": "Creator", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186476635": { + "type": "object", + "title": "Access Rights", + "properties": { + "subitem_1522299639480": { + "enum": [ + null, + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ], + "type": [ + "null", + "string" + ], + "title": "アクセス権", + "format": "select", + "currentEnum": [ + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ] + }, + "subitem_1600958577026": { + "type": "string", + "title": "アクセス権URI", + "format": "text", + "title_i18n": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + }, + "title_i18n_temp": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + } + } + } + }, + "item_1617186499011": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522650717957": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650727486": { + "type": "string", + "title": "権利情報Resource", + "format": "text", + "title_i18n": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + }, + "title_i18n_temp": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + } + }, + "subitem_1522651041219": { + "type": "string", + "title": "権利情報", + "format": "text", + "title_i18n": { + "en": "Rights Information", + "ja": "権利情報" + }, + "title_i18n_temp": { + "en": "Rights Information", + "ja": "権利情報" + } + } + } + }, + "title": "Rights", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186609386": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522299896455": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300014469": { + "enum": [ + null, + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ], + "type": [ + "null", + "string" + ], + "title": "主題Scheme", + "format": "select", + "currentEnum": [ + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ] + }, + "subitem_1522300048512": { + "type": "string", + "title": "主題URI", + "format": "text", + "title_i18n": { + "en": "Subject URI", + "ja": "主題URI" + }, + "title_i18n_temp": { + "en": "Subject URI", + "ja": "主題URI" + } + }, + "subitem_1523261968819": { + "type": "string", + "title": "主題", + "format": "text", + "title_i18n": { + "en": "Subject", + "ja": "主題" + }, + "title_i18n_temp": { + "en": "Subject", + "ja": "主題" + } + } + } + }, + "title": "Subject", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186626617": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_description": { + "type": "string", + "title": "内容記述", + "format": "textarea", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + }, + "title_i18n_temp": { + "en": "Description", + "ja": "内容記述" + } + }, + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "properties": { + "subitem_1522300295150": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300316516": { + "type": "string", + "title": "出版者", + "format": "text", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + }, + "title_i18n_temp": { + "en": "Publisher", + "ja": "出版者" + } + } + } + }, + "title": "Publisher", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186660861": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522300695726": { + "enum": [ + null, + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ] + }, + "subitem_1522300722591": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + } + } + }, + "title": "Date", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186702042": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551255818386": { + "enum": [ + null, + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ] + } + } + }, + "title": "Language", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186783814": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_identifier_uri": { + "type": "string", + "title": "識別子", + "format": "text", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + }, + "title_i18n_temp": { + "en": "Identifier", + "ja": "識別子" + } + }, + "subitem_identifier_type": { + "enum": [ + null, + "DOI", + "HDL", + "URI" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "DOI", + "HDL", + "URI" + ] + } + } + }, + "title": "Identifier", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186819068": { + "type": "object", + "title": "Identifier Registration", + "properties": { + "subitem_identifier_reg_text": { + "type": "string", + "title": "ID登録", + "format": "text", + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + }, + "title_i18n_temp": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + "subitem_identifier_reg_type": { + "enum": [ + null, + "JaLC", + "Crossref", + "DataCite", + "PMID" + ], + "type": [ + "null", + "string" + ], + "title": "ID登録タイプ", + "format": "select", + "currentEnum": [ + "JaLC", + "Crossref", + "DataCite", + "PMID" + ] + } + } + }, + "item_1617186859717": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522658018441": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522658031721": { + "type": "string", + "title": "時間的範囲", + "format": "text", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + }, + "title_i18n_temp": { + "en": "Temporal", + "ja": "時間的範囲" + } + } + } + }, + "title": "Temporal", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186882738": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_geolocation_box": { + "type": "object", + "title": "位置情報(空間)", + "format": "object", + "properties": { + "subitem_east_longitude": { + "type": "string", + "title": "東部経度", + "format": "text", + "title_i18n": { + "en": "East Bound Longitude", + "ja": "東部経度" + }, + "title_i18n_temp": { + "en": "East Bound Longitude", + "ja": "東部経度" + } + }, + "subitem_north_latitude": { + "type": "string", + "title": "北部緯度", + "format": "text", + "title_i18n": { + "en": "North Bound Latitude", + "ja": "北部緯度" + }, + "title_i18n_temp": { + "en": "North Bound Latitude", + "ja": "北部緯度" + } + }, + "subitem_south_latitude": { + "type": "string", + "title": "南部緯度", + "format": "text", + "title_i18n": { + "en": "South Bound Latitude", + "ja": "南部緯度" + }, + "title_i18n_temp": { + "en": "South Bound Latitude", + "ja": "南部緯度" + } + }, + "subitem_west_longitude": { + "type": "string", + "title": "西部経度", + "format": "text", + "title_i18n": { + "en": "West Bound Longitude", + "ja": "西部経度" + }, + "title_i18n_temp": { + "en": "West Bound Longitude", + "ja": "西部経度" + } + } + } + }, + "subitem_geolocation_place": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_geolocation_place_text": { + "type": "string", + "title": "位置情報(自由記述)", + "format": "text", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + } + }, + "title": "位置情報(自由記述)", + "format": "array" + }, + "subitem_geolocation_point": { + "type": "object", + "title": "位置情報(点)", + "format": "object", + "properties": { + "subitem_point_latitude": { + "type": "string", + "title": "緯度", + "format": "text", + "title_i18n": { + "en": "Point Latitude", + "ja": "緯度" + }, + "title_i18n_temp": { + "en": "Point Latitude", + "ja": "緯度" + } + }, + "subitem_point_longitude": { + "type": "string", + "title": "経度", + "format": "text", + "title_i18n": { + "en": "Point Longitude", + "ja": "経度" + }, + "title_i18n_temp": { + "en": "Point Longitude", + "ja": "経度" + } + } + } + } + } + }, + "title": "Geo Location", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186901218": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522399143519": { + "type": "object", + "title": "助成機関識別子", + "format": "object", + "properties": { + "subitem_1522399281603": { + "enum": [ + null, + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "助成機関識別子タイプ", + "format": "select", + "currentEnum": [ + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ] + }, + "subitem_1522399333375": { + "type": "string", + "title": "助成機関識別子", + "format": "text", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + } + } + }, + "subitem_1522399412622": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522399416691": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522737543681": { + "type": "string", + "title": "助成機関名", + "format": "text", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + } + } + }, + "title": "助成機関名", + "format": "array" + }, + "subitem_1522399571623": { + "type": "object", + "title": "研究課題番号", + "format": "object", + "properties": { + "subitem_1522399585738": { + "type": "string", + "title": "研究課題URI", + "format": "text", + "title_i18n": { + "en": "Award URI", + "ja": "研究課題URI" + }, + "title_i18n_temp": { + "en": "Award URI", + "ja": "研究課題URI" + } + }, + "subitem_1522399628911": { + "type": "string", + "title": "研究課題番号", + "format": "text", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + } + } + }, + "subitem_1522399651758": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522721910626": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522721929892": { + "type": "string", + "title": "研究課題名", + "format": "text", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + } + }, + "title": "研究課題名", + "format": "array" + } + } + }, + "title": "Funding Reference", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186920753": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522646500366": { + "enum": [ + null, + "PISSN", + "EISSN", + "ISSN", + "NCID" + ], + "type": [ + "null", + "string" + ], + "title": "収録物識別子タイプ", + "format": "select", + "currentEnum": [ + "PISSN", + "EISSN", + "ISSN", + "NCID" + ] + }, + "subitem_1522646572813": { + "type": "string", + "title": "収録物識別子", + "format": "text", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + }, + "title_i18n_temp": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + } + } + }, + "title": "Source Identifier", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186941041": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522650068558": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650091861": { + "type": "string", + "title": "収録物名", + "format": "text", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + }, + "title_i18n_temp": { + "en": "Source Title", + "ja": "収録物名" + } + } + } + }, + "title": "Source Title", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617186959569": { + "type": "object", + "title": "Volume Number", + "properties": { + "subitem_1551256328147": { + "type": "string", + "title": "Volume Number", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + } + } + }, + "item_1617186981471": { + "type": "object", + "title": "Issue Number", + "properties": { + "subitem_1551256294723": { + "type": "string", + "title": "Issue Number", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + } + } + }, + "item_1617186994930": { + "type": "object", + "title": "Number of Pages", + "properties": { + "subitem_1551256248092": { + "type": "string", + "title": "Number of Pages", + "format": "text", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Pages", + "ja": "ページ数" + } + } + } + }, + "item_1617187024783": { + "type": "object", + "title": "Page Start", + "properties": { + "subitem_1551256198917": { + "type": "string", + "title": "Page Start", + "format": "text", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + } + } + }, + "item_1617187045071": { + "type": "object", + "title": "Page End", + "properties": { + "subitem_1551256185532": { + "type": "string", + "title": "Page End", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + } + } + }, + "item_1617187056579": { + "type": "object", + "title": "Bibliographic Information", + "properties": { + "bibliographicPageEnd": { + "type": "string", + "title": "終了ページ", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + }, + "bibliographic_titles": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "bibliographic_title": { + "type": "string", + "title": "タイトル", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "bibliographic_titleLang": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + "bibliographicIssueDates": { + "type": "object", + "title": "発行日", + "format": "object", + "properties": { + "bibliographicIssueDate": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + }, + "bibliographicIssueDateType": { + "enum": [ + null, + "Issued" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Issued" + ] + } + } + }, + "bibliographicIssueNumber": { + "type": "string", + "title": "号", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + }, + "bibliographicVolumeNumber": { + "type": "string", + "title": "巻", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + }, + "bibliographicNumberOfPages": { + "type": "string", + "title": "ページ数", + "format": "text", + "title_i18n": { + "en": "Number of Page", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Page", + "ja": "ページ数" + } + } + } + }, + "item_1617187087799": { + "type": "object", + "title": "Dissertation Number", + "properties": { + "subitem_1551256171004": { + "type": "string", + "title": "Dissertation Number", + "format": "text", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + }, + "title_i18n_temp": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + } + } + }, + "item_1617187112279": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551256126428": { + "type": "string", + "title": "Degree Name", + "format": "text", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + }, + "title_i18n_temp": { + "en": "Degree Name", + "ja": "学位名" + } + }, + "subitem_1551256129013": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "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", + "properties": { + "subitem_1551256096004": { + "type": "string", + "title": "Date Granted", + "format": "datetime", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + }, + "title_i18n_temp": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + } + } + }, + "item_1617187187528": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1599711633003": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711636923": { + "type": "string", + "title": "Conference Name", + "format": "text", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + "subitem_1599711645590": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Name", + "format": "array" + }, + "subitem_1599711655652": { + "type": "string", + "title": "Conference Sequence", + "format": "text", + "title_i18n": { + "en": "Conference Sequence", + "ja": "回次" + }, + "title_i18n_temp": { + "en": "Conference Sequence", + "ja": "回次" + } + }, + "subitem_1599711660052": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711680082": { + "type": "string", + "title": "Conference Sponsor", + "format": "text", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + "subitem_1599711686511": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Sponsor", + "format": "array" + }, + "subitem_1599711699392": { + "type": "object", + "title": "Conference Date", + "format": "object", + "properties": { + "subitem_1599711704251": { + "type": "string", + "title": "Conference Date", + "format": "text", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + "subitem_1599711712451": { + "type": "string", + "title": "Start Day", + "format": "text", + "title_i18n": { + "en": "Start Day", + "ja": "開始日" + }, + "title_i18n_temp": { + "en": "Start Day", + "ja": "開始日" + } + }, + "subitem_1599711727603": { + "type": "string", + "title": "Start Month", + "format": "text", + "title_i18n": { + "en": "Start Month", + "ja": "開始月" + }, + "title_i18n_temp": { + "en": "Start Month", + "ja": "開始月" + } + }, + "subitem_1599711731891": { + "type": "string", + "title": "Start Year", + "format": "text", + "title_i18n": { + "en": "Start Year", + "ja": "開始年" + }, + "title_i18n_temp": { + "en": "Start Year", + "ja": "開始年" + } + }, + "subitem_1599711735410": { + "type": "string", + "title": "End Day", + "format": "text", + "title_i18n": { + "en": "End Day", + "ja": "終了日" + }, + "title_i18n_temp": { + "en": "End Day", + "ja": "終了日" + } + }, + "subitem_1599711739022": { + "type": "string", + "title": "End Month", + "format": "text", + "title_i18n": { + "en": "End Month", + "ja": "終了月" + }, + "title_i18n_temp": { + "en": "End Month", + "ja": "終了月" + } + }, + "subitem_1599711743722": { + "type": "string", + "title": "End Year", + "format": "text", + "title_i18n": { + "en": "End Year", + "ja": "終了年" + }, + "title_i18n_temp": { + "en": "End Year", + "ja": "終了年" + } + }, + "subitem_1599711745532": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "subitem_1599711758470": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711769260": { + "type": "string", + "title": "Conference Venue", + "format": "text", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + "subitem_1599711775943": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Venue", + "format": "array" + }, + "subitem_1599711788485": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711798761": { + "type": "string", + "title": "Conference Place", + "format": "text", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + "subitem_1599711803382": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Place", + "format": "array" + }, + "subitem_1599711813532": { + "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": "Conference Country", + "format": "select", + "currentEnum": [ + "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" + ] + } + } + }, + "title": "Conference", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617258105262": { + "type": "object", + "title": "Resource Type", + "required": [ + "resourceuri", + "resourcetype" + ], + "properties": { + "resourceuri": { + "type": "string", + "title": "資源タイプ識別子", + "format": "text", + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + }, + "resourcetype": { + "enum": [ + null, + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "資源タイプ", + "format": "select", + "currentEnum": [ + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ] + } + } + }, + "item_1617265215918": { + "type": "object", + "title": "Version Type", + "properties": { + "subitem_1522305645492": { + "enum": [ + null, + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ], + "type": [ + "null", + "string" + ], + "title": "出版タイプ", + "format": "select", + "currentEnum": [ + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ] + }, + "subitem_1600292170262": { + "type": "string", + "title": "出版タイプResource", + "format": "text", + "title_i18n": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + }, + "title_i18n_temp": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + } + } + } + }, + "item_1617349709064": { + "type": "array", + "items": { + "type": "object", + "properties": { + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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", + "currentEnum": [ + "ContactPerson", + "DataCollector", + "DataCurator", + "DataManager", + "Distributor", + "Editor", + "HostingInstitution", + "Producer", + "ProjectLeader", + "ProjectManager", + "ProjectMember", + "RelatedPerson", + "Researcher", + "ResearchGroup", + "Sponsor", + "Supervisor", + "WorkPackageLeader", + "Other" + ] + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "寄与者識別子", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "寄与者識別子URI", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + }, + "title_i18n_temp": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "寄与者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + } + }, + "title": "寄与者メールアドレス", + "format": "array" + }, + "contributorNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "lang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "contributorName": { + "type": "string", + "title": "姓名", + "format": "text", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "contributorAffiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "contributorAffiliationScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + }, + "contributorAffiliationNameIdentifier": { + "type": "string", + "title": "所属機関識別子", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "contributorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "寄与者別名", + "format": "array" + } + } + }, + "title": "Contributor", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617349808926": { + "type": "object", + "title": "Version", + "properties": { + "subitem_1523263171732": { + "type": "string", + "title": "バージョン情報", + "format": "text", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version", + "ja": "バージョン情報" + } + } + } + }, + "item_1617351524846": { + "type": "object", + "title": "APC", + "properties": { + "subitem_1523260933860": { + "enum": [ + null, + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ], + "type": [ + "null", + "string" + ], + "title": "APC", + "format": "select", + "currentEnum": [ + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ] + } + } + }, + "item_1617353299429": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522306207484": { + "enum": [ + null, + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ], + "type": [ + "null", + "string" + ], + "title": "関連タイプ", + "format": "select", + "currentEnum": [ + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ] + }, + "subitem_1522306287251": { + "type": "object", + "title": "関連識別子", + "format": "object", + "properties": { + "subitem_1522306382014": { + "enum": [ + null, + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ] + }, + "subitem_1522306436033": { + "type": "string", + "title": "関連識別子", + "format": "text", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + } + } + }, + "subitem_1523320863692": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523320867455": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1523320909613": { + "type": "string", + "title": "関連名称", + "format": "text", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + } + }, + "title": "関連名称", + "format": "array" + } + } + }, + "title": "Relation", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617605131499": { + "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", + "summary", + "fulltext", + "thumbnail", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "オブジェクトタイプ", + "format": "select", + "currentEnum": [ + "abstract", + "summary", + "fulltext", + "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", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Collected", + "Copyrighted", + "Created", + "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": "File", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617610673286": { + "type": "array", + "items": { + "type": "object", + "properties": { + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "権利者識別子", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "権利者識別子URI", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "権利者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "title": "権利者識別子", + "format": "array" + }, + "rightHolderNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "rightHolderName": { + "type": "string", + "title": "権利者名", + "format": "text", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + }, + "rightHolderLanguage": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "権利者名", + "format": "array" + } + } + }, + "title": "Rights Holder", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617620223087": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1565671149650": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1565671169640": { + "type": "string", + "title": "Banner Headline", + "format": "text", + "title_i18n": { + "en": "Banner Headline", + "ja": "大見出し" + }, + "title_i18n_temp": { + "en": "Banner Headline", + "ja": "大見出し" + } + }, + "subitem_1565671178623": { + "type": "string", + "title": "Subheading", + "format": "text", + "title_i18n": { + "en": "Subheading", + "ja": "小見出し" + }, + "title_i18n_temp": { + "en": "Subheading", + "ja": "小見出し" + } + } + } + }, + "title": "Heading", + "maxItems": 9999, + "minItems": 1 + }, + "item_1617944105607": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551256015892": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256027296": { + "type": "string", + "title": "Degree Grantor Name Identifier", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + "subitem_1551256029891": { + "enum": [ + null, + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "Degree Grantor Name Identifier Scheme", + "format": "select", + "currentEnum": [ + "kakenhi" + ] + } + } + }, + "title": "Degree Grantor Name Identifier", + "format": "array" + }, + "subitem_1551256037922": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256042287": { + "type": "string", + "title": "Degree Grantor Name", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + }, + "subitem_1551256047619": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Degree Grantor Name", + "format": "array" + } + } + }, + "title": "Degree Grantor", + "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" + } + }, + "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": "" +} diff --git a/modules/invenio-records-rest/tests/item_type/item_type_mapping.json b/modules/invenio-records-rest/tests/item_type/item_type_mapping.json new file mode 100644 index 0000000000..0fa4d81147 --- /dev/null +++ b/modules/invenio-records-rest/tests/item_type/item_type_mapping.json @@ -0,0 +1,784 @@ +{ + "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_1617186331708": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "title": { + "@value": "subitem_1551255647225", + "@attributes": { "xml:lang": "subitem_1551255648112" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "title": { "@value": "subitem_1551255647225" } }, + "display_lang_type": "" + }, + "item_1617186385884": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "alternative": { + "@value": "subitem_1551255720400", + "@attributes": { "xml:lang": "subitem_1551255721061" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "title": { "@value": "subitem_1551255720400" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617186476635": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "accessRights": { + "@value": "subitem_1522299639480", + "@attributes": { "rdf:resource": "subitem_1600958577026" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "rights": { "@value": "subitem_1522299639480" } }, + "display_lang_type": "" + }, + "item_1617186499011": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "rights": { + "@value": "subitem_1522651041219", + "@attributes": { + "xml:lang": "subitem_1522650717957", + "rdf:resource": "subitem_1522650727486" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "rights": { "@value": "subitem_1522651041219" } }, + "display_lang_type": "" + }, + "item_1617186609386": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "subject": { + "@value": "subitem_1523261968819", + "@attributes": { + "xml:lang": "subitem_1522299896455", + "subjectURI": "subitem_1522300048512", + "subjectScheme": "subitem_1522300014469" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "subject": { "@value": "subitem_1523261968819" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617186643794": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "publisher": { + "@value": "subitem_1522300316516", + "@attributes": { "xml:lang": "subitem_1522300295150" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "publisher": { "@value": "subitem_1522300316516" } }, + "display_lang_type": "" + }, + "item_1617186660861": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "date": { + "@value": "subitem_1522300722591", + "@attributes": { "dateType": "subitem_1522300695726" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "date": { "@value": "subitem_1522300722591" } }, + "display_lang_type": "" + }, + "item_1617186702042": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "language": { "@value": "subitem_1551255818386" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "language": { "@value": "subitem_1551255818386" } }, + "display_lang_type": "" + }, + "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": "" + }, + "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": "" + }, + "item_1617186859717": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "temporal": { + "@value": "subitem_1522658031721", + "@attributes": { "xml:lang": "subitem_1522658018441" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "coverage": { "@value": "subitem_1522658031721" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617186901218": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "fundingReference": { + "awardTitle": { + "@value": "subitem_1522399651758.subitem_1522721929892", + "@attributes": { + "xml:lang": "subitem_1522399651758.subitem_1522721910626" + } + }, + "funderName": { + "@value": "subitem_1522399412622.subitem_1522737543681", + "@attributes": { + "xml:lang": "subitem_1522399412622.subitem_1522399416691" + } + }, + "awardNumber": { + "@value": "subitem_1522399571623.subitem_1522399628911", + "@attributes": { + "awardURI": "subitem_1522399571623.subitem_1522399585738" + } + }, + "funderIdentifier": { + "@value": "subitem_1522399143519.subitem_1522399333375", + "@attributes": { + "funderIdentifierType": "subitem_1522399143519.subitem_1522399281603" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617186920753": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceIdentifier": { + "@value": "subitem_1522646572813", + "@attributes": { "identifierType": "subitem_1522646500366" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1522646572813" } }, + "display_lang_type": "" + }, + "item_1617186941041": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceTitle": { + "@value": "subitem_1522650091861", + "@attributes": { "xml:lang": "subitem_1522650068558" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1522650091861" } }, + "display_lang_type": "" + }, + "item_1617186959569": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "volume": { "@value": "subitem_1551256328147" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256328147" } }, + "display_lang_type": "" + }, + "item_1617186981471": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "issue": { "@value": "subitem_1551256294723" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256294723" } }, + "display_lang_type": "" + }, + "item_1617186994930": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "numPages": { "@value": "subitem_1551256248092" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256248092" } }, + "display_lang_type": "" + }, + "item_1617187024783": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "pageStart": { "@value": "subitem_1551256198917" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256198917" } }, + "display_lang_type": "" + }, + "item_1617187045071": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "pageEnd": { "@value": "subitem_1551256185532" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256185532" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617187087799": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "dissertationNumber": { "@value": "subitem_1551256171004" } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "identifier": { "@value": "subitem_1551256171004" } }, + "display_lang_type": "" + }, + "item_1617187112279": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "degreeName": { + "@value": "subitem_1551256126428", + "@attributes": { "xml:lang": "subitem_1551256129013" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "description": { "@value": "subitem_1551256126428" } }, + "display_lang_type": "" + }, + "item_1617187136212": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "dateGranted": { "@value": "subitem_1551256096004" } }, + "junii2_mapping": "", + "oai_dc_mapping": { "date": { "@value": "subitem_1551256096004" } }, + "display_lang_type": "" + }, + "item_1617187187528": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "conference": { + "conferenceDate": { + "@value": "subitem_1599711699392.subitem_1599711704251", + "@attributes": { + "endDay": "subitem_1599711699392.subitem_1599711735410", + "endYear": "subitem_1599711699392.subitem_1599711743722", + "endMonth": "subitem_1599711699392.subitem_1599711739022", + "startDay": "subitem_1599711699392.subitem_1599711712451", + "xml:lang": "subitem_1599711699392.subitem_1599711745532", + "startYear": "subitem_1599711699392.subitem_1599711731891", + "startMonth": "subitem_1599711699392.subitem_1599711727603" + } + }, + "conferenceName": { + "@value": "subitem_1599711633003.subitem_1599711636923", + "@attributes": { + "xml:lang": "subitem_1599711633003.subitem_1599711645590" + } + }, + "conferenceVenue": { + "@value": "subitem_1599711758470.subitem_1599711769260", + "@attributes": { + "xml:lang": "subitem_1599711758470.subitem_1599711775943" + } + }, + "conferenceCountry": { "@value": "subitem_1599711813532" }, + "conferenceSponsor": { + "@value": "subitem_1599711660052.subitem_1599711680082", + "@attributes": { + "xml:lang": "subitem_1599711660052.subitem_1599711686511" + } + }, + "conferenceSequence": { "@value": "subitem_1599711655652" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "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": "" + }, + "item_1617265215918": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "versiontype": { + "@value": "subitem_1522305645492", + "@attributes": { "rdf:resource": "subitem_1600292170262" } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { "type": { "@value": "subitem_1522305645492" } }, + "display_lang_type": "" + }, + "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": "" + }, + "item_1617349808926": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "version": { "@value": "subitem_1523263171732" } }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617351524846": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { "apc": { "@value": "subitem_1523260933860" } }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617353299429": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "relation": { + "@attributes": { "relationType": "subitem_1522306207484" }, + "relatedTitle": { + "@value": "subitem_1523320863692.subitem_1523320909613", + "@attributes": { + "xml:lang": "subitem_1523320863692.subitem_1523320867455" + } + }, + "relatedIdentifier": { + "@value": "subitem_1522306287251.subitem_1522306436033", + "@attributes": { + "identifierType": "subitem_1522306287251.subitem_1522306382014" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "relation": { + "@value": "subitem_1522306287251.subitem_1522306436033,subitem_1523320863692.subitem_1523320909613" + } + }, + "display_lang_type": "" + }, + "item_1617605131499": { + "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": "" + }, + "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": "" + }, + "item_1617620223087": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": "", + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "item_1617944105607": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "degreeGrantor": { + "nameIdentifier": { + "@value": "subitem_1551256015892.subitem_1551256027296", + "@attributes": { + "nameIdentifierScheme": "subitem_1551256015892.subitem_1551256029891" + } + }, + "degreeGrantorName": { + "@value": "subitem_1551256037922.subitem_1551256042287", + "@attributes": { + "xml:lang": "subitem_1551256037922.subitem_1551256047619" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "description": { "@value": "subitem_1551256037922.subitem_1551256042287" } + }, + "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": "" + } + } diff --git a/modules/invenio-records-rest/tests/item_type/itemtype_render.json b/modules/invenio-records-rest/tests/item_type/itemtype_render.json new file mode 100644 index 0000000000..cd700be275 --- /dev/null +++ b/modules/invenio-records-rest/tests/item_type/itemtype_render.json @@ -0,0 +1,19297 @@ +{ + "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_1617186331708": { + "title": "Title", + "option": { + "crtf": true, + "hidden": false, + "oneline": false, + "multiple": true, + "required": true, + "showlist": true + }, + "input_type": "cus_67", + "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_69", + "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_60", + "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_4", + "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_14", + "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_6", + "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_17", + "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_5", + "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_11", + "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_71", + "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_176", + "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_16", + "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_18", + "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_19", + "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_21", + "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_10", + "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_13", + "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_88", + "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_87", + "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_85", + "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_84", + "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_83", + "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_102", + "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_82", + "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_80", + "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_79", + "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_75", + "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_8", + "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_9", + "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_62", + "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_28", + "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_27", + "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_12", + "title_i18n": { + "en": "Relation", + "ja": "関連情報" + }, + "input_value": "", + "input_maxItems": "9999", + "input_minItems": "1" + }, + "item_1617605131499": { + "title": "File", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": true, + "required": false, + "showlist": true + }, + "input_type": "cus_65", + "title_i18n": { + "en": "File", + "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_3", + "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_119", + "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_78", + "title_i18n": { + "en": "Degree Grantor", + "ja": "学位授与機関" + }, + "input_value": "", + "input_maxItems": "9999", + "input_minItems": "1" + }, + "item_1662046377046": { + "title": "サムネイル", + "option": { + "crtf": false, + "hidden": false, + "oneline": false, + "multiple": true, + "required": false, + "showlist": true + }, + "input_type": "cus_1037", + "title_i18n": { + "en": "thumbnail", + "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_1617605131499", + "item_1617620223087", + "item_1662046377046" + ], + "edit_notes": { + "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_1617605131499": "", + "item_1617610673286": "", + "item_1617620223087": "", + "item_1617944105607": "", + "item_1662046377046": "" + }, + "meta_system": { + "system_file": { + "title": "File Information", + "option": { + "crtf": false, + "hidden": true, + "oneline": false, + "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, + "oneline": false, + "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, + "oneline": false, + "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, + "oneline": false, + "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_1617186331708": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551255647225": { + "type": "string", + "title": "Title", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "subitem_1551255648112": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617186385884": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551255720400": { + "type": "string", + "title": "Alternative Title", + "format": "text", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + }, + "title_i18n_temp": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + "subitem_1551255721061": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617186419668": { + "type": "object", + "format": "object", + "properties": { + "iscreator": { + "type": "string", + "title": "iscreator", + "format": "text", + "uniqueKey": "item_1617186419668_iscreator", + "title_i18n": { + "en": "", + "ja": "" + } + }, + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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_i18n_temp": { + "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": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + "creatorNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者姓名", + "format": "array" + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "作成者識別子", + "format": "text", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "作成者識別子URI", + "format": "text", + "title_i18n": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + }, + "title_i18n_temp": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + } + }, + "nameIdentifierScheme": { + "enum": [], + "type": [ + "null", + "string" + ], + "title": "作成者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "affiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + "affiliationNameIdentifierURI": { + "type": "string", + "title": "所属機関識別子URI", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "affiliationNameIdentifierScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + } + } + }, + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "creatorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者別名", + "format": "array" + } + } + }, + "item_1617186476635": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522299639480": { + "enum": [ + null, + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ], + "type": [ + "null", + "string" + ], + "title": "アクセス権", + "format": "select", + "currentEnum": [ + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ] + }, + "subitem_1600958577026": { + "type": "string", + "title": "アクセス権URI", + "format": "text", + "title_i18n": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + }, + "title_i18n_temp": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + } + } + } + }, + "item_1617186499011": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522650717957": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650727486": { + "type": "string", + "title": "権利情報Resource", + "format": "text", + "title_i18n": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + }, + "title_i18n_temp": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + } + }, + "subitem_1522651041219": { + "type": "string", + "title": "権利情報", + "format": "text", + "title_i18n": { + "en": "Rights Information", + "ja": "権利情報" + }, + "title_i18n_temp": { + "en": "Rights Information", + "ja": "権利情報" + } + } + } + }, + "item_1617186609386": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522299896455": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300014469": { + "enum": [ + null, + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ], + "type": [ + "null", + "string" + ], + "title": "主題Scheme", + "format": "select", + "currentEnum": [ + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ] + }, + "subitem_1522300048512": { + "type": "string", + "title": "主題URI", + "format": "text", + "title_i18n": { + "en": "Subject URI", + "ja": "主題URI" + }, + "title_i18n_temp": { + "en": "Subject URI", + "ja": "主題URI" + } + }, + "subitem_1523261968819": { + "type": "string", + "title": "主題", + "format": "text", + "title_i18n": { + "en": "Subject", + "ja": "主題" + }, + "title_i18n_temp": { + "en": "Subject", + "ja": "主題" + } + } + } + }, + "item_1617186626617": { + "type": "object", + "format": "object", + "properties": { + "subitem_description": { + "type": "string", + "title": "内容記述", + "format": "textarea", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + }, + "title_i18n_temp": { + "en": "Description", + "ja": "内容記述" + } + }, + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617186643794": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522300295150": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300316516": { + "type": "string", + "title": "出版者", + "format": "text", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + }, + "title_i18n_temp": { + "en": "Publisher", + "ja": "出版者" + } + } + } + }, + "item_1617186660861": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522300695726": { + "enum": [ + null, + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ] + }, + "subitem_1522300722591": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + } + } + }, + "item_1617186702042": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551255818386": { + "enum": [ + null, + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ] + } + } + }, + "item_1617186783814": { + "type": "object", + "format": "object", + "properties": { + "subitem_identifier_uri": { + "type": "string", + "title": "識別子", + "format": "text", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + }, + "title_i18n_temp": { + "en": "Identifier", + "ja": "識別子" + } + }, + "subitem_identifier_type": { + "enum": [ + null, + "DOI", + "HDL", + "URI" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "DOI", + "HDL", + "URI" + ] + } + } + }, + "item_1617186819068": { + "type": "object", + "format": "object", + "properties": { + "subitem_identifier_reg_text": { + "type": "string", + "title": "ID登録", + "format": "text", + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + }, + "title_i18n_temp": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + "subitem_identifier_reg_type": { + "enum": [ + null, + "JaLC", + "Crossref", + "DataCite", + "PMID" + ], + "type": [ + "null", + "string" + ], + "title": "ID登録タイプ", + "format": "select", + "currentEnum": [ + "JaLC", + "Crossref", + "DataCite", + "PMID" + ] + } + } + }, + "item_1617186859717": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522658018441": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522658031721": { + "type": "string", + "title": "時間的範囲", + "format": "text", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + }, + "title_i18n_temp": { + "en": "Temporal", + "ja": "時間的範囲" + } + } + } + }, + "item_1617186882738": { + "type": "object", + "format": "object", + "properties": { + "subitem_geolocation_box": { + "type": "object", + "title": "位置情報(空間)", + "format": "object", + "properties": { + "subitem_east_longitude": { + "type": "string", + "title": "東部経度", + "format": "text", + "title_i18n": { + "en": "East Bound Longitude", + "ja": "東部経度" + }, + "title_i18n_temp": { + "en": "East Bound Longitude", + "ja": "東部経度" + } + }, + "subitem_north_latitude": { + "type": "string", + "title": "北部緯度", + "format": "text", + "title_i18n": { + "en": "North Bound Latitude", + "ja": "北部緯度" + }, + "title_i18n_temp": { + "en": "North Bound Latitude", + "ja": "北部緯度" + } + }, + "subitem_south_latitude": { + "type": "string", + "title": "南部緯度", + "format": "text", + "title_i18n": { + "en": "South Bound Latitude", + "ja": "南部緯度" + }, + "title_i18n_temp": { + "en": "South Bound Latitude", + "ja": "南部緯度" + } + }, + "subitem_west_longitude": { + "type": "string", + "title": "西部経度", + "format": "text", + "title_i18n": { + "en": "West Bound Longitude", + "ja": "西部経度" + }, + "title_i18n_temp": { + "en": "West Bound Longitude", + "ja": "西部経度" + } + } + } + }, + "subitem_geolocation_place": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_geolocation_place_text": { + "type": "string", + "title": "位置情報(自由記述)", + "format": "text", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + } + }, + "title": "位置情報(自由記述)", + "format": "array" + }, + "subitem_geolocation_point": { + "type": "object", + "title": "位置情報(点)", + "format": "object", + "properties": { + "subitem_point_latitude": { + "type": "string", + "title": "緯度", + "format": "text", + "title_i18n": { + "en": "Point Latitude", + "ja": "緯度" + }, + "title_i18n_temp": { + "en": "Point Latitude", + "ja": "緯度" + } + }, + "subitem_point_longitude": { + "type": "string", + "title": "経度", + "format": "text", + "title_i18n": { + "en": "Point Longitude", + "ja": "経度" + }, + "title_i18n_temp": { + "en": "Point Longitude", + "ja": "経度" + } + } + } + } + } + }, + "item_1617186901218": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522399143519": { + "type": "object", + "title": "助成機関識別子", + "format": "object", + "properties": { + "subitem_1522399281603": { + "enum": [ + null, + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "助成機関識別子タイプ", + "format": "select", + "currentEnum": [ + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ] + }, + "subitem_1522399333375": { + "type": "string", + "title": "助成機関識別子", + "format": "text", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + } + } + }, + "subitem_1522399412622": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522399416691": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522737543681": { + "type": "string", + "title": "助成機関名", + "format": "text", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + } + } + }, + "title": "助成機関名", + "format": "array" + }, + "subitem_1522399571623": { + "type": "object", + "title": "研究課題番号", + "format": "object", + "properties": { + "subitem_1522399585738": { + "type": "string", + "title": "研究課題URI", + "format": "text", + "title_i18n": { + "en": "Award URI", + "ja": "研究課題URI" + }, + "title_i18n_temp": { + "en": "Award URI", + "ja": "研究課題URI" + } + }, + "subitem_1522399628911": { + "type": "string", + "title": "研究課題番号", + "format": "text", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + } + } + }, + "subitem_1522399651758": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522721910626": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522721929892": { + "type": "string", + "title": "研究課題名", + "format": "text", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + } + }, + "title": "研究課題名", + "format": "array" + } + } + }, + "item_1617186920753": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522646500366": { + "enum": [ + null, + "PISSN", + "EISSN", + "ISSN", + "NCID" + ], + "type": [ + "null", + "string" + ], + "title": "収録物識別子タイプ", + "format": "select", + "currentEnum": [ + "PISSN", + "EISSN", + "ISSN", + "NCID" + ] + }, + "subitem_1522646572813": { + "type": "string", + "title": "収録物識別子", + "format": "text", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + }, + "title_i18n_temp": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + } + } + }, + "item_1617186941041": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522650068558": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650091861": { + "type": "string", + "title": "収録物名", + "format": "text", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + }, + "title_i18n_temp": { + "en": "Source Title", + "ja": "収録物名" + } + } + } + }, + "item_1617186959569": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256328147": { + "type": "string", + "title": "Volume Number", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + } + } + }, + "item_1617186981471": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256294723": { + "type": "string", + "title": "Issue Number", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + } + } + }, + "item_1617186994930": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256248092": { + "type": "string", + "title": "Number of Pages", + "format": "text", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Pages", + "ja": "ページ数" + } + } + } + }, + "item_1617187024783": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256198917": { + "type": "string", + "title": "Page Start", + "format": "text", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + } + } + }, + "item_1617187045071": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256185532": { + "type": "string", + "title": "Page End", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + } + } + }, + "item_1617187056579": { + "type": "object", + "format": "object", + "properties": { + "bibliographicPageEnd": { + "type": "string", + "title": "終了ページ", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + }, + "bibliographic_titles": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "bibliographic_title": { + "type": "string", + "title": "タイトル", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "bibliographic_titleLang": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + "bibliographicIssueDates": { + "type": "object", + "title": "発行日", + "format": "object", + "properties": { + "bibliographicIssueDate": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + }, + "bibliographicIssueDateType": { + "enum": [ + null, + "Issued" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Issued" + ] + } + } + }, + "bibliographicIssueNumber": { + "type": "string", + "title": "号", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + }, + "bibliographicVolumeNumber": { + "type": "string", + "title": "巻", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + }, + "bibliographicNumberOfPages": { + "type": "string", + "title": "ページ数", + "format": "text", + "title_i18n": { + "en": "Number of Page", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Page", + "ja": "ページ数" + } + } + } + }, + "item_1617187087799": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256171004": { + "type": "string", + "title": "Dissertation Number", + "format": "text", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + }, + "title_i18n_temp": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + } + } + }, + "item_1617187112279": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256126428": { + "type": "string", + "title": "Degree Name", + "format": "text", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + }, + "title_i18n_temp": { + "en": "Degree Name", + "ja": "学位名" + } + }, + "subitem_1551256129013": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "item_1617187136212": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256096004": { + "type": "string", + "title": "Date Granted", + "format": "datetime", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + }, + "title_i18n_temp": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + } + } + }, + "item_1617187187528": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711633003": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711636923": { + "type": "string", + "title": "Conference Name", + "format": "text", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + "subitem_1599711645590": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Name", + "format": "array" + }, + "subitem_1599711655652": { + "type": "string", + "title": "Conference Sequence", + "format": "text", + "title_i18n": { + "en": "Conference Sequence", + "ja": "回次" + }, + "title_i18n_temp": { + "en": "Conference Sequence", + "ja": "回次" + } + }, + "subitem_1599711660052": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711680082": { + "type": "string", + "title": "Conference Sponsor", + "format": "text", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + "subitem_1599711686511": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Sponsor", + "format": "array" + }, + "subitem_1599711699392": { + "type": "object", + "title": "Conference Date", + "format": "object", + "properties": { + "subitem_1599711704251": { + "type": "string", + "title": "Conference Date", + "format": "text", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + "subitem_1599711712451": { + "type": "string", + "title": "Start Day", + "format": "text", + "title_i18n": { + "en": "Start Day", + "ja": "開始日" + }, + "title_i18n_temp": { + "en": "Start Day", + "ja": "開始日" + } + }, + "subitem_1599711727603": { + "type": "string", + "title": "Start Month", + "format": "text", + "title_i18n": { + "en": "Start Month", + "ja": "開始月" + }, + "title_i18n_temp": { + "en": "Start Month", + "ja": "開始月" + } + }, + "subitem_1599711731891": { + "type": "string", + "title": "Start Year", + "format": "text", + "title_i18n": { + "en": "Start Year", + "ja": "開始年" + }, + "title_i18n_temp": { + "en": "Start Year", + "ja": "開始年" + } + }, + "subitem_1599711735410": { + "type": "string", + "title": "End Day", + "format": "text", + "title_i18n": { + "en": "End Day", + "ja": "終了日" + }, + "title_i18n_temp": { + "en": "End Day", + "ja": "終了日" + } + }, + "subitem_1599711739022": { + "type": "string", + "title": "End Month", + "format": "text", + "title_i18n": { + "en": "End Month", + "ja": "終了月" + }, + "title_i18n_temp": { + "en": "End Month", + "ja": "終了月" + } + }, + "subitem_1599711743722": { + "type": "string", + "title": "End Year", + "format": "text", + "title_i18n": { + "en": "End Year", + "ja": "終了年" + }, + "title_i18n_temp": { + "en": "End Year", + "ja": "終了年" + } + }, + "subitem_1599711745532": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "subitem_1599711758470": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711769260": { + "type": "string", + "title": "Conference Venue", + "format": "text", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + "subitem_1599711775943": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Venue", + "format": "array" + }, + "subitem_1599711788485": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711798761": { + "type": "string", + "title": "Conference Place", + "format": "text", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + "subitem_1599711803382": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Place", + "format": "array" + }, + "subitem_1599711813532": { + "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": "Conference Country", + "format": "select", + "currentEnum": [ + "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" + ] + } + } + }, + "item_1617258105262": { + "type": "object", + "format": "object", + "properties": { + "resourceuri": { + "type": "string", + "title": "資源タイプ識別子", + "format": "text", + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + }, + "resourcetype": { + "enum": [ + null, + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "資源タイプ", + "format": "select", + "currentEnum": [ + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ] + } + } + }, + "item_1617265215918": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522305645492": { + "enum": [ + null, + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ], + "type": [ + "null", + "string" + ], + "title": "出版タイプ", + "format": "select", + "currentEnum": [ + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ] + }, + "subitem_1600292170262": { + "type": "string", + "title": "出版タイプResource", + "format": "text", + "title_i18n": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + }, + "title_i18n_temp": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + } + } + } + }, + "item_1617349709064": { + "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": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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", + "currentEnum": [ + "ContactPerson", + "DataCollector", + "DataCurator", + "DataManager", + "Distributor", + "Editor", + "HostingInstitution", + "Producer", + "ProjectLeader", + "ProjectManager", + "ProjectMember", + "RelatedPerson", + "Researcher", + "ResearchGroup", + "Sponsor", + "Supervisor", + "WorkPackageLeader", + "Other" + ] + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "寄与者識別子", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "寄与者識別子URI", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + }, + "title_i18n_temp": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + } + }, + "nameIdentifierScheme": { + "enum": [], + "type": [ + "null", + "string" + ], + "title": "寄与者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + } + }, + "title": "寄与者メールアドレス", + "format": "array" + }, + "contributorNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "lang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "contributorName": { + "type": "string", + "title": "姓名", + "format": "text", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "contributorAffiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "contributorAffiliationScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + }, + "contributorAffiliationNameIdentifier": { + "type": "string", + "title": "所属機関識別子", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "contributorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "寄与者別名", + "format": "array" + } + } + }, + "item_1617349808926": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523263171732": { + "type": "string", + "title": "バージョン情報", + "format": "text", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version", + "ja": "バージョン情報" + } + } + } + }, + "item_1617351524846": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523260933860": { + "enum": [ + null, + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ], + "type": [ + "null", + "string" + ], + "title": "APC", + "format": "select", + "currentEnum": [ + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ] + } + } + }, + "item_1617353299429": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522306207484": { + "enum": [ + null, + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ], + "type": [ + "null", + "string" + ], + "title": "関連タイプ", + "format": "select", + "currentEnum": [ + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ] + }, + "subitem_1522306287251": { + "type": "object", + "title": "関連識別子", + "format": "object", + "properties": { + "subitem_1522306382014": { + "enum": [ + null, + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ] + }, + "subitem_1522306436033": { + "type": "string", + "title": "関連識別子", + "format": "text", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + } + } + }, + "subitem_1523320863692": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523320867455": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1523320909613": { + "type": "string", + "title": "関連名称", + "format": "text", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + } + }, + "title": "関連名称", + "format": "array" + } + } + }, + "item_1617605131499": { + "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", + "summary", + "fulltext", + "thumbnail", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "オブジェクトタイプ", + "format": "select", + "currentEnum": [ + "abstract", + "summary", + "fulltext", + "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", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Collected", + "Copyrighted", + "Created", + "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_1617610673286": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "権利者識別子", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "権利者識別子URI", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + } + }, + "nameIdentifierScheme": { + "enum": [], + "type": [ + "null", + "string" + ], + "title": "権利者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "title": "権利者識別子", + "format": "array" + }, + "rightHolderNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "rightHolderName": { + "type": "string", + "title": "権利者名", + "format": "text", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + }, + "rightHolderLanguage": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "権利者名", + "format": "array" + } + } + }, + "item_1617620223087": { + "type": "object", + "format": "object", + "properties": { + "subitem_1565671149650": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1565671169640": { + "type": "string", + "title": "Banner Headline", + "format": "text", + "title_i18n": { + "en": "Banner Headline", + "ja": "大見出し" + }, + "title_i18n_temp": { + "en": "Banner Headline", + "ja": "大見出し" + } + }, + "subitem_1565671178623": { + "type": "string", + "title": "Subheading", + "format": "text", + "title_i18n": { + "en": "Subheading", + "ja": "小見出し" + }, + "title_i18n_temp": { + "en": "Subheading", + "ja": "小見出し" + } + } + } + }, + "item_1617944105607": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256015892": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256027296": { + "type": "string", + "title": "Degree Grantor Name Identifier", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + "subitem_1551256029891": { + "enum": [ + null, + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "Degree Grantor Name Identifier Scheme", + "format": "select", + "currentEnum": [ + "kakenhi" + ] + } + } + }, + "title": "Degree Grantor Name Identifier", + "format": "array" + }, + "subitem_1551256037922": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256042287": { + "type": "string", + "title": "Degree Grantor Name", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + }, + "subitem_1551256047619": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Degree Grantor Name", + "format": "array" + } + } + }, + "item_1662046377046": { + "type": "object", + "format": "object", + "properties": { + "subitem_thumbnail": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "thumbnail_url": { + "type": "string", + "title": "URI", + "format": "text", + "title_i18n": { + "en": "URI", + "ja": "URI" + }, + "title_i18n_temp": { + "en": "URI", + "ja": "URI" + } + }, + "thumbnail_label": { + "type": "string", + "title": "ラベル", + "format": "text", + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + } + } + } + }, + "title": "URI", + "format": "array" + } + } + } + } + }, + "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_1551255647225", + "type": "text", + "title": "Title", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + { + "key": "item_1617186331708[].subitem_1551255648112", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Title", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + } + }, + { + "add": "New", + "key": "item_1617186385884", + "items": [ + { + "key": "item_1617186385884[].subitem_1551255720400", + "type": "text", + "title": "Alternative Title", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + }, + "title_i18n_temp": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + { + "key": "item_1617186385884[].subitem_1551255721061", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Alternative Title", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + { + "add": "New", + "key": "item_1617186419668", + "items": [ + { + "key": "item_1617186419668[].authorInputButton", + "icon": "glyphicon glyphicon-search", + "type": "button", + "style": "btn-default pull-right m-top-5", + "title": "著者DBから入力", + "onClick": "searchAuthor('item_1617186419668', true, form)" + }, + { + "add": "New", + "key": "item_1617186419668[].nameIdentifiers", + "items": [ + { + "key": "item_1617186419668[].nameIdentifiers[].nameIdentifierScheme", + "type": "select", + "title": "作成者識別子Scheme", + "titleMap": [], + "title_i18n": { + "en": "Creator Identifier Scheme", + "ja": "作成者識別子Scheme" + }, + "title_i18n_temp": { + "en": "Creator Identifier Scheme", + "ja": "作成者識別子Scheme" + } + }, + { + "key": "item_1617186419668[].nameIdentifiers[].nameIdentifierURI", + "type": "text", + "title": "作成者識別子URI", + "title_i18n": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + }, + "title_i18n_temp": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + } + }, + { + "key": "item_1617186419668[].nameIdentifiers[].nameIdentifier", + "type": "text", + "title": "作成者識別子", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者識別子", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorNames", + "items": [ + { + "key": "item_1617186419668[].creatorNames[].creatorName", + "type": "text", + "title": "姓名", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + { + "key": "item_1617186419668[].creatorNames[].creatorNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者姓名", + "title_i18n": { + "en": "Creator Name", + "ja": "作成者姓名" + }, + "title_i18n_temp": { + "en": "Creator Name", + "ja": "作成者姓名" + } + }, + { + "add": "New", + "key": "item_1617186419668[].familyNames", + "items": [ + { + "key": "item_1617186419668[].familyNames[].familyName", + "type": "text", + "title": "姓", + "title_i18n": { + "en": "Family Name", + "ja": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + { + "key": "item_1617186419668[].familyNames[].familyNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者姓", + "title_i18n": { + "en": "Creator Family Name", + "ja": "作成者姓" + }, + "title_i18n_temp": { + "en": "Creator Family Name", + "ja": "作成者姓" + } + }, + { + "add": "New", + "key": "item_1617186419668[].givenNames", + "items": [ + { + "key": "item_1617186419668[].givenNames[].givenName", + "type": "text", + "title": "名", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + { + "key": "item_1617186419668[].givenNames[].givenNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者名", + "title_i18n": { + "en": "Creator Given Name", + "ja": "作成者名" + }, + "title_i18n_temp": { + "en": "Creator Given Name", + "ja": "作成者名" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorAlternatives", + "items": [ + { + "key": "item_1617186419668[].creatorAlternatives[].creatorAlternative", + "type": "text", + "title": "別名", + "title_i18n": { + "en": "Alternative Name", + "ja": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + { + "key": "item_1617186419668[].creatorAlternatives[].creatorAlternativeLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者別名", + "title_i18n": { + "en": "Creator Alternative Name", + "ja": "作成者別名" + }, + "title_i18n_temp": { + "en": "Creator Alternative Name", + "ja": "作成者別名" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorMails", + "items": [ + { + "key": "item_1617186419668[].creatorMails[].creatorMail", + "type": "text", + "title": "メールアドレス", + "title_i18n": { + "en": "Email Address", + "ja": "メールアドレス" + }, + "title_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者メールアドレス", + "title_i18n": { + "en": "Creator Email Address", + "ja": "作成者メールアレス" + }, + "title_i18n_temp": { + "en": "Creator Email Address", + "ja": "作成者メールアレス" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorAffiliations", + "items": [ + { + "add": "New", + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers", + "items": [ + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifier", + "type": "text", + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierScheme", + "type": "select", + "title": "所属機関識別子スキーマ", + "titleMap": [ + { + "name": "kakenhi", + "value": "kakenhi" + }, + { + "name": "ISNI", + "value": "ISNI" + }, + { + "name": "Ringgold", + "value": "Ringgold" + }, + { + "name": "GRID", + "value": "GRID" + } + ], + "title_i18n": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + } + }, + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNameIdentifiers[].affiliationNameIdentifierURI", + "type": "text", + "title": "所属機関識別子URI", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "add": "New", + "key": "item_1617186419668[].creatorAffiliations[].affiliationNames", + "items": [ + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationName", + "type": "text", + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + { + "key": "item_1617186419668[].creatorAffiliations[].affiliationNames[].affiliationNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "作成者所属", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "作成者所属" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "作成者所属" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Creator", + "title_i18n": { + "en": "Creator", + "ja": "作成者" + } + }, + { + "add": "New", + "key": "item_1617349709064", + "items": [ + { + "key": "item_1617349709064[].contributorType", + "type": "select", + "title": "寄与者タイプ", + "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" + } + ], + "title_i18n": { + "en": "Contributor Type", + "ja": "寄与者タイプ" + }, + "title_i18n_temp": { + "en": "Contributor Type", + "ja": "寄与者タイプ" + } + }, + { + "add": "New", + "key": "item_1617349709064[].nameIdentifiers", + "items": [ + { + "key": "item_1617349709064[].nameIdentifiers[].nameIdentifierScheme", + "type": "select", + "title": "寄与者識別子Scheme", + "titleMap": [], + "title_i18n": { + "en": "Contributor Identifier Scheme", + "ja": "寄与者識別子Scheme" + }, + "title_i18n_temp": { + "en": "Contributor Identifier Scheme", + "ja": "寄与者識別子Scheme" + } + }, + { + "key": "item_1617349709064[].nameIdentifiers[].nameIdentifierURI", + "type": "text", + "title": "寄与者識別子URI", + "title_i18n": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + }, + "title_i18n_temp": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + } + }, + { + "key": "item_1617349709064[].nameIdentifiers[].nameIdentifier", + "type": "text", + "title": "寄与者識別子", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者識別子", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorNames", + "items": [ + { + "key": "item_1617349709064[].contributorNames[].contributorName", + "type": "text", + "title": "姓名", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + { + "key": "item_1617349709064[].contributorNames[].lang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者姓名", + "title_i18n": { + "en": "Contributor Name", + "ja": "寄与者姓名" + }, + "title_i18n_temp": { + "en": "Contributor Name", + "ja": "寄与者姓名" + } + }, + { + "add": "New", + "key": "item_1617349709064[].familyNames", + "items": [ + { + "key": "item_1617349709064[].familyNames[].familyName", + "type": "text", + "title": "姓", + "title_i18n": { + "en": "Family Name", + "ja": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + { + "key": "item_1617349709064[].familyNames[].familyNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者姓", + "title_i18n": { + "en": "Contributor Family Name", + "ja": "寄与者姓" + }, + "title_i18n_temp": { + "en": "Contributor Family Name", + "ja": "寄与者姓" + } + }, + { + "add": "New", + "key": "item_1617349709064[].givenNames", + "items": [ + { + "key": "item_1617349709064[].givenNames[].givenName", + "type": "text", + "title": "名", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + { + "key": "item_1617349709064[].givenNames[].givenNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者名", + "title_i18n": { + "en": "Contributor Given Name", + "ja": "寄与者名" + }, + "title_i18n_temp": { + "en": "Contributor Given Name", + "ja": "寄与者名" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorAlternatives", + "items": [ + { + "key": "item_1617349709064[].contributorAlternatives[].contributorAlternative", + "type": "text", + "title": "別名", + "title_i18n": { + "en": "Alternative Name", + "ja": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + { + "key": "item_1617349709064[].contributorAlternatives[].contributorAlternativeLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者別名", + "title_i18n": { + "en": "Contributor Alternative Name", + "ja": "寄与者別名" + }, + "title_i18n_temp": { + "en": "Contributor Alternative Name", + "ja": "寄与者別名" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorAffiliations", + "items": [ + { + "add": "New", + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers", + "items": [ + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationNameIdentifier", + "type": "text", + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationScheme", + "type": "select", + "title": "所属機関識別子スキーマ", + "titleMap": [ + { + "name": "kakenhi", + "value": "kakenhi" + }, + { + "name": "ISNI", + "value": "ISNI" + }, + { + "name": "Ringgold", + "value": "Ringgold" + }, + { + "name": "GRID", + "value": "GRID" + } + ], + "title_i18n": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier Scheme", + "ja": "所属機関識別子スキーマ" + } + }, + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNameIdentifiers[].contributorAffiliationURI", + "type": "text", + "title": "所属機関識別子URI", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関識別子", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames", + "items": [ + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationName", + "type": "text", + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + { + "key": "item_1617349709064[].contributorAffiliations[].contributorAffiliationNames[].contributorAffiliationNameLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "所属機関名", + "title_i18n": { + "en": "Affiliation Name", + "ja": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者所属", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "寄与者所属" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "寄与者所属" + } + }, + { + "add": "New", + "key": "item_1617349709064[].contributorMails", + "items": [ + { + "key": "item_1617349709064[].contributorMails[].contributorMail", + "type": "text", + "title": "メールアドレス", + "title_i18n": { + "en": "Email Address", + "ja": "メールアドレス" + }, + "title_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "寄与者メールアドレス", + "title_i18n": { + "en": "Contributor Email Address", + "ja": "寄与者メールアドレス" + }, + "title_i18n_temp": { + "en": "Contributor Email Address", + "ja": "寄与者メールアドレス" + } + }, + { + "key": "item_1617349709064[].authorInputButton", + "icon": "glyphicon glyphicon-search", + "type": "button", + "style": "btn-default pull-right m-top-5", + "title": "著者DBから入力", + "onClick": "searchAuthor('item_1617349709064', true, form)" + } + ], + "style": { + "add": "btn-success" + }, + "title": "Contributor", + "title_i18n": { + "en": "Contributor", + "ja": "寄与者" + } + }, + { + "key": "item_1617186476635", + "type": "fieldset", + "items": [ + { + "key": "item_1617186476635.subitem_1522299639480", + "type": "select", + "title": "アクセス権", + "onChange": "changedAccessRights(this, modelValue)", + "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" + } + ], + "title_i18n": { + "en": "Access Rights", + "ja": "アクセス権" + }, + "title_i18n_temp": { + "en": "Access Rights", + "ja": "アクセス権" + } + }, + { + "key": "item_1617186476635.subitem_1600958577026", + "type": "text", + "title": "アクセス権URI", + "readonly": true, + "title_i18n": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + }, + "fieldHtmlClass": "txt-access-rights-uri", + "title_i18n_temp": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + } + } + ], + "title": "Access Rights", + "title_i18n": { + "en": "Access Rights", + "ja": "アクセス権" + } + }, + { + "key": "item_1617351524846", + "type": "fieldset", + "items": [ + { + "key": "item_1617351524846.subitem_1523260933860", + "type": "select", + "title": "APC", + "titleMap": [ + { + "name": "Paid", + "value": "Paid" + }, + { + "name": "Fully waived", + "value": "Fully waived" + }, + { + "name": "Not required", + "value": "Not required" + }, + { + "name": "Partially waived", + "value": "Partially waived" + }, + { + "name": "Not charged", + "value": "Not charged" + }, + { + "name": "Unknown", + "value": "Unknown" + } + ], + "title_i18n": { + "en": "APC", + "ja": "APC" + } + } + ], + "title": "APC", + "title_i18n": { + "en": "APC", + "ja": "APC" + } + }, + { + "add": "New", + "key": "item_1617186499011", + "items": [ + { + "key": "item_1617186499011[].subitem_1522650717957", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186499011[].subitem_1522650727486", + "type": "text", + "title": "権利情報Resource", + "title_i18n": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + }, + "title_i18n_temp": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + } + }, + { + "key": "item_1617186499011[].subitem_1522651041219", + "type": "text", + "title": "権利情報", + "title_i18n": { + "en": "Rights Information", + "ja": "権利情報" + }, + "title_i18n_temp": { + "en": "Rights Information", + "ja": "権利情報" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Rights", + "title_i18n": { + "en": "Rights", + "ja": "権利情報" + } + }, + { + "add": "New", + "key": "item_1617610673286", + "items": [ + { + "add": "New", + "key": "item_1617610673286[].nameIdentifiers", + "items": [ + { + "key": "item_1617610673286[].nameIdentifiers[].nameIdentifierScheme", + "type": "select", + "title": "権利者識別子Scheme", + "titleMap": [], + "title_i18n": { + "en": "Right Holder Identifier Scheme", + "ja": "権利者識別子Scheme" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier Scheme", + "ja": "権利者識別子Scheme" + } + }, + { + "key": "item_1617610673286[].nameIdentifiers[].nameIdentifierURI", + "type": "text", + "title": "権利者識別子URI", + "title_i18n": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + } + }, + { + "key": "item_1617610673286[].nameIdentifiers[].nameIdentifier", + "type": "text", + "title": "権利者識別子", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "権利者識別子", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + }, + { + "add": "New", + "key": "item_1617610673286[].rightHolderNames", + "items": [ + { + "key": "item_1617610673286[].rightHolderNames[].rightHolderLanguage", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617610673286[].rightHolderNames[].rightHolderName", + "type": "text", + "title": "権利者名", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "権利者名", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Rights Holder", + "title_i18n": { + "en": "Rights Holder", + "ja": "権利者情報" + } + }, + { + "add": "New", + "key": "item_1617186609386", + "items": [ + { + "key": "item_1617186609386[].subitem_1522299896455", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186609386[].subitem_1522300014469", + "type": "select", + "title": "主題Scheme", + "titleMap": [ + { + "name": "BSH", + "value": "BSH" + }, + { + "name": "DDC", + "value": "DDC" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Subject Scheme", + "ja": "主題Scheme" + }, + "title_i18n_temp": { + "en": "Subject Scheme", + "ja": "主題Scheme" + } + }, + { + "key": "item_1617186609386[].subitem_1522300048512", + "type": "text", + "title": "主題URI", + "title_i18n": { + "en": "Subject URI", + "ja": "主題URI" + }, + "title_i18n_temp": { + "en": "Subject URI", + "ja": "主題URI" + } + }, + { + "key": "item_1617186609386[].subitem_1523261968819", + "type": "text", + "title": "主題", + "title_i18n": { + "en": "Subject", + "ja": "主題" + }, + "title_i18n_temp": { + "en": "Subject", + "ja": "主題" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Subject", + "title_i18n": { + "en": "Subject", + "ja": "主題" + } + }, + { + "add": "New", + "key": "item_1617186626617", + "items": [ + { + "key": "item_1617186626617[].subitem_description_type", + "type": "select", + "title": "内容記述タイプ", + "titleMap": [ + { + "name": "Abstract", + "value": "Abstract" + }, + { + "name": "Methods", + "value": "Methods" + }, + { + "name": "TableOfContents", + "value": "TableOfContents" + }, + { + "name": "TechnicalInfo", + "value": "TechnicalInfo" + }, + { + "name": "Other", + "value": "Other" + } + ], + "title_i18n": { + "en": "Description Type", + "ja": "内容記述タイプ" + }, + "title_i18n_temp": { + "en": "Description Type", + "ja": "内容記述タイプ" + } + }, + { + "key": "item_1617186626617[].subitem_description", + "type": "textarea", + "title": "内容記述", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + }, + "title_i18n_temp": { + "en": "Description", + "ja": "内容記述" + } + }, + { + "key": "item_1617186626617[].subitem_description_language", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Description", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + } + }, + { + "add": "New", + "key": "item_1617186643794", + "items": [ + { + "key": "item_1617186643794[].subitem_1522300295150", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186643794[].subitem_1522300316516", + "type": "text", + "title": "出版者", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + }, + "title_i18n_temp": { + "en": "Publisher", + "ja": "出版者" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Publisher", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + } + }, + { + "add": "New", + "key": "item_1617186660861", + "items": [ + { + "key": "item_1617186660861[].subitem_1522300695726", + "type": "select", + "title": "日付タイプ", + "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" + } + ], + "title_i18n": { + "en": "Date Type", + "ja": "日付タイプ" + }, + "title_i18n_temp": { + "en": "Date Type", + "ja": "日付タイプ" + } + }, + { + "key": "item_1617186660861[].subitem_1522300722591", + "type": "template", + "title": "日付", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Date", + "title_i18n": { + "en": "Date", + "ja": "日付" + } + }, + { + "add": "New", + "key": "item_1617186702042", + "items": [ + { + "key": "item_1617186702042[].subitem_1551255818386", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "jpn", + "value": "jpn" + }, + { + "name": "eng", + "value": "eng" + }, + { + "name": "fra", + "value": "fra" + }, + { + "name": "ita", + "value": "ita" + }, + { + "name": "spa", + "value": "spa" + }, + { + "name": "zho", + "value": "zho" + }, + { + "name": "rus", + "value": "rus" + }, + { + "name": "lat", + "value": "lat" + }, + { + "name": "msa", + "value": "msa" + }, + { + "name": "epo", + "value": "epo" + }, + { + "name": "ara", + "value": "ara" + }, + { + "name": "ell", + "value": "ell" + }, + { + "name": "kor", + "value": "kor" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Language", + "title_i18n": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617258105262", + "type": "fieldset", + "items": [ + { + "key": "item_1617258105262.resourcetype", + "type": "select", + "title": "資源タイプ", + "onChange": "resourceTypeSelect()", + "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 article", + "value": "journal article" + }, + { + "name": "newspaper", + "value": "newspaper" + }, + { + "name": "periodical", + "value": "periodical" + }, + { + "name": "review article", + "value": "review article" + }, + { + "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 object", + "value": "conference object" + }, + { + "name": "conference proceedings", + "value": "conference proceedings" + }, + { + "name": "conference poster", + "value": "conference poster" + }, + { + "name": "dataset", + "value": "dataset" + }, + { + "name": "interview", + "value": "interview" + }, + { + "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": "patent", + "value": "patent" + }, + { + "name": "internal report", + "value": "internal report" + }, + { + "name": "report", + "value": "report" + }, + { + "name": "research report", + "value": "research report" + }, + { + "name": "technical report", + "value": "technical report" + }, + { + "name": "policy report", + "value": "policy report" + }, + { + "name": "report part", + "value": "report part" + }, + { + "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": "interactive resource", + "value": "interactive resource" + }, + { + "name": "learning object", + "value": "learning object" + }, + { + "name": "manuscript", + "value": "manuscript" + }, + { + "name": "musical notation", + "value": "musical notation" + }, + { + "name": "research proposal", + "value": "research proposal" + }, + { + "name": "software", + "value": "software" + }, + { + "name": "technical documentation", + "value": "technical documentation" + }, + { + "name": "workflow", + "value": "workflow" + }, + { + "name": "other", + "value": "other" + } + ], + "title_i18n": { + "en": "Resource Type", + "ja": "資源タイプ" + }, + "title_i18n_temp": { + "en": "Resource Type", + "ja": "資源タイプ" + } + }, + { + "key": "item_1617258105262.resourceuri", + "type": "text", + "title": "資源タイプ識別子", + "readonly": true, + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + } + ], + "title": "Resource Type", + "title_i18n": { + "en": "Resource Type", + "ja": "資源タイプ" + } + }, + { + "key": "item_1617349808926", + "type": "fieldset", + "items": [ + { + "key": "item_1617349808926.subitem_1523263171732", + "type": "text", + "title": "バージョン情報", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version", + "ja": "バージョン情報" + } + } + ], + "title": "Version", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + } + }, + { + "key": "item_1617265215918", + "type": "fieldset", + "items": [ + { + "key": "item_1617265215918.subitem_1522305645492", + "type": "select", + "title": "出版タイプ", + "onChange": "changedVersionType(this, modelValue)", + "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" + } + ], + "title_i18n": { + "en": "Version Type", + "ja": "出版タイプ" + }, + "title_i18n_temp": { + "en": "Version Type", + "ja": "出版タイプ" + } + }, + { + "key": "item_1617265215918.subitem_1600292170262", + "type": "text", + "title": "出版タイプResource", + "readonly": true, + "title_i18n": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + }, + "fieldHtmlClass": "txt-version-resource", + "title_i18n_temp": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + } + } + ], + "title": "Version Type", + "title_i18n": { + "en": "Version Type", + "ja": "出版タイプ" + } + }, + { + "add": "New", + "key": "item_1617186783814", + "items": [ + { + "key": "item_1617186783814[].subitem_identifier_uri", + "type": "text", + "title": "識別子", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + }, + "title_i18n_temp": { + "en": "Identifier", + "ja": "識別子" + } + }, + { + "key": "item_1617186783814[].subitem_identifier_type", + "type": "select", + "title": "識別子タイプ", + "titleMap": [ + { + "name": "DOI", + "value": "DOI" + }, + { + "name": "HDL", + "value": "HDL" + }, + { + "name": "URI", + "value": "URI" + } + ], + "title_i18n": { + "en": "Identifier Type", + "ja": "識別子タイプ" + }, + "title_i18n_temp": { + "en": "Identifier Type", + "ja": "識別子タイプ" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Identifier", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + } + }, + { + "key": "item_1617186819068", + "type": "fieldset", + "items": [ + { + "key": "item_1617186819068.subitem_identifier_reg_text", + "type": "text", + "title": "ID登録", + "readonly": true, + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + }, + "title_i18n_temp": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + { + "key": "item_1617186819068.subitem_identifier_reg_type", + "type": "select", + "title": "ID登録タイプ", + "readonly": true, + "titleMap": [ + { + "name": "JaLC", + "value": "JaLC" + }, + { + "name": "Crossref", + "value": "Crossref" + }, + { + "name": "DataCite", + "value": "DataCite" + }, + { + "name": "PMID", + "value": "PMID" + } + ], + "title_i18n": { + "en": "Identifier Registration Type", + "ja": "ID登録タイプ" + }, + "title_i18n_temp": { + "en": "Identifier Registration Type", + "ja": "ID登録タイプ" + } + } + ], + "title": "Identifier Registration", + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + { + "add": "New", + "key": "item_1617353299429", + "items": [ + { + "key": "item_1617353299429[].subitem_1522306207484", + "type": "select", + "title": "関連タイプ", + "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": "isSupplementTo", + "value": "isSupplementTo" + }, + { + "name": "isSupplementedBy", + "value": "isSupplementedBy" + }, + { + "name": "isIdenticalTo", + "value": "isIdenticalTo" + }, + { + "name": "isDerivedFrom", + "value": "isDerivedFrom" + }, + { + "name": "isSourceOf", + "value": "isSourceOf" + } + ], + "title_i18n": { + "en": "Relation Type", + "ja": "関連タイプ" + }, + "title_i18n_temp": { + "en": "Relation Type", + "ja": "関連タイプ" + } + }, + { + "key": "item_1617353299429[].subitem_1522306287251", + "type": "fieldset", + "items": [ + { + "key": "item_1617353299429[].subitem_1522306287251.subitem_1522306382014", + "type": "select", + "title": "識別子タイプ", + "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" + } + ], + "title_i18n": { + "en": "Identifier Type", + "ja": "識別子タイプ" + }, + "title_i18n_temp": { + "en": "Identifier Type", + "ja": "識別子タイプ" + } + }, + { + "key": "item_1617353299429[].subitem_1522306287251.subitem_1522306436033", + "type": "text", + "title": "関連識別子", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + } + ], + "title": "関連識別子", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + }, + { + "add": "New", + "key": "item_1617353299429[].subitem_1523320863692", + "items": [ + { + "key": "item_1617353299429[].subitem_1523320863692[].subitem_1523320867455", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617353299429[].subitem_1523320863692[].subitem_1523320909613", + "type": "text", + "title": "関連名称", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "関連名称", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Relation", + "title_i18n": { + "en": "Relation", + "ja": "関連情報" + } + }, + { + "add": "New", + "key": "item_1617186859717", + "items": [ + { + "key": "item_1617186859717[].subitem_1522658018441", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186859717[].subitem_1522658031721", + "type": "text", + "title": "時間的範囲", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + }, + "title_i18n_temp": { + "en": "Temporal", + "ja": "時間的範囲" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Temporal", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + } + }, + { + "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": "経度", + "title_i18n": { + "en": "Point Longitude", + "ja": "経度" + }, + "title_i18n_temp": { + "en": "Point Longitude", + "ja": "経度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_point.subitem_point_latitude", + "type": "text", + "title": "緯度", + "title_i18n": { + "en": "Point Latitude", + "ja": "緯度" + }, + "title_i18n_temp": { + "en": "Point Latitude", + "ja": "緯度" + } + } + ], + "title": "位置情報(点)", + "title_i18n": { + "en": "Geo Location Point", + "ja": "位置情報(点)" + }, + "title_i18n_temp": { + "en": "Geo Location Point", + "ja": "位置情報(点)" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box", + "type": "fieldset", + "items": [ + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_west_longitude", + "type": "text", + "title": "西部経度", + "title_i18n": { + "en": "West Bound Longitude", + "ja": "西部経度" + }, + "title_i18n_temp": { + "en": "West Bound Longitude", + "ja": "西部経度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_east_longitude", + "type": "text", + "title": "東部経度", + "title_i18n": { + "en": "East Bound Longitude", + "ja": "東部経度" + }, + "title_i18n_temp": { + "en": "East Bound Longitude", + "ja": "東部経度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_south_latitude", + "type": "text", + "title": "南部緯度", + "title_i18n": { + "en": "South Bound Latitude", + "ja": "南部緯度" + }, + "title_i18n_temp": { + "en": "South Bound Latitude", + "ja": "南部緯度" + } + }, + { + "key": "item_1617186882738[].subitem_geolocation_box.subitem_north_latitude", + "type": "text", + "title": "北部緯度", + "title_i18n": { + "en": "North Bound Latitude", + "ja": "北部緯度" + }, + "title_i18n_temp": { + "en": "North Bound Latitude", + "ja": "北部緯度" + } + } + ], + "title": "位置情報(空間)", + "title_i18n": { + "en": "Geo Location Box", + "ja": "位置情報(空間)" + }, + "title_i18n_temp": { + "en": "Geo Location Box", + "ja": "位置情報(空間)" + } + }, + { + "add": "New", + "key": "item_1617186882738[].subitem_geolocation_place", + "items": [ + { + "key": "item_1617186882738[].subitem_geolocation_place[].subitem_geolocation_place_text", + "type": "text", + "title": "位置情報(自由記述)", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "位置情報(自由記述)", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Geo Location", + "title_i18n": { + "en": "Geo Location", + "ja": "位置情報" + } + }, + { + "add": "New", + "key": "item_1617186901218", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399143519", + "type": "fieldset", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399143519.subitem_1522399281603", + "type": "select", + "title": "助成機関識別子タイプ", + "titleMap": [ + { + "name": "Crossref Funder", + "value": "Crossref Funder" + }, + { + "name": "GRID", + "value": "GRID" + }, + { + "name": "ISNI", + "value": "ISNI" + }, + { + "name": "Other", + "value": "Other" + }, + { + "name": "kakenhi", + "value": "kakenhi" + } + ], + "title_i18n": { + "en": "Funder Identifier Type", + "ja": "助成機関識別子タイプ" + }, + "title_i18n_temp": { + "en": "Funder Identifier Type", + "ja": "助成機関識別子タイプ" + } + }, + { + "key": "item_1617186901218[].subitem_1522399143519.subitem_1522399333375", + "type": "text", + "title": "助成機関識別子", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + } + ], + "title": "助成機関識別子", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + }, + { + "add": "New", + "key": "item_1617186901218[].subitem_1522399412622", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399412622[].subitem_1522399416691", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186901218[].subitem_1522399412622[].subitem_1522737543681", + "type": "text", + "title": "助成機関名", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "助成機関名", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + }, + { + "key": "item_1617186901218[].subitem_1522399571623", + "type": "fieldset", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399571623.subitem_1522399585738", + "type": "text", + "title": "研究課題URI", + "title_i18n": { + "en": "Award URI", + "ja": "研究課題URI" + }, + "title_i18n_temp": { + "en": "Award URI", + "ja": "研究課題URI" + } + }, + { + "key": "item_1617186901218[].subitem_1522399571623.subitem_1522399628911", + "type": "text", + "title": "研究課題番号", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + } + ], + "title": "研究課題番号", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + }, + { + "add": "New", + "key": "item_1617186901218[].subitem_1522399651758", + "items": [ + { + "key": "item_1617186901218[].subitem_1522399651758[].subitem_1522721910626", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186901218[].subitem_1522399651758[].subitem_1522721929892", + "type": "text", + "title": "研究課題名", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "研究課題名", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Funding Reference", + "title_i18n": { + "en": "Funding Reference", + "ja": "助成情報" + } + }, + { + "add": "New", + "key": "item_1617186920753", + "items": [ + { + "key": "item_1617186920753[].subitem_1522646500366", + "type": "select", + "title": "収録物識別子タイプ", + "titleMap": [ + { + "name": "PISSN", + "value": "PISSN" + }, + { + "name": "EISSN", + "value": "EISSN" + }, + { + "name": "ISSN", + "value": "ISSN" + }, + { + "name": "NCID", + "value": "NCID" + } + ], + "title_i18n": { + "en": "Source Identifier Type", + "ja": "収録物識別子タイプ" + }, + "title_i18n_temp": { + "en": "Source Identifier Type", + "ja": "収録物識別子タイプ" + } + }, + { + "key": "item_1617186920753[].subitem_1522646572813", + "type": "text", + "title": "収録物識別子", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + }, + "title_i18n_temp": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Source Identifier", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + }, + { + "add": "New", + "key": "item_1617186941041", + "items": [ + { + "key": "item_1617186941041[].subitem_1522650068558", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617186941041[].subitem_1522650091861", + "type": "text", + "title": "収録物名", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + }, + "title_i18n_temp": { + "en": "Source Title", + "ja": "収録物名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Source Title", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + } + }, + { + "key": "item_1617186959569", + "type": "fieldset", + "items": [ + { + "key": "item_1617186959569.subitem_1551256328147", + "type": "text", + "title": "Volume Number", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + } + ], + "title": "Volume Number", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + } + }, + { + "key": "item_1617186981471", + "type": "fieldset", + "items": [ + { + "key": "item_1617186981471.subitem_1551256294723", + "type": "text", + "title": "Issue Number", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + } + ], + "title": "Issue Number", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + } + }, + { + "key": "item_1617186994930", + "type": "fieldset", + "items": [ + { + "key": "item_1617186994930.subitem_1551256248092", + "type": "text", + "title": "Number of Pages", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Pages", + "ja": "ページ数" + } + } + ], + "title": "Number of Pages", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + } + }, + { + "key": "item_1617187024783", + "type": "fieldset", + "items": [ + { + "key": "item_1617187024783.subitem_1551256198917", + "type": "text", + "title": "Page Start", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + } + ], + "title": "Page Start", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + { + "key": "item_1617187045071", + "type": "fieldset", + "items": [ + { + "key": "item_1617187045071.subitem_1551256185532", + "type": "text", + "title": "Page End", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + } + ], + "title": "Page End", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + } + }, + { + "key": "item_1617187056579", + "type": "fieldset", + "items": [ + { + "add": "New", + "key": "item_1617187056579.bibliographic_titles", + "items": [ + { + "key": "item_1617187056579.bibliographic_titles[].bibliographic_title", + "type": "text", + "title": "タイトル", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + { + "key": "item_1617187056579.bibliographic_titles[].bibliographic_titleLang", + "type": "select", + "title": "言語", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "雑誌名", + "title_i18n": { + "en": "Journal Title", + "ja": "雑誌名" + }, + "title_i18n_temp": { + "en": "Journal Title", + "ja": "雑誌名" + } + }, + { + "key": "item_1617187056579.bibliographicVolumeNumber", + "type": "text", + "title": "巻", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + }, + { + "key": "item_1617187056579.bibliographicIssueNumber", + "type": "text", + "title": "号", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + }, + { + "key": "item_1617187056579.bibliographicPageStart", + "type": "text", + "title": "開始ページ", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + { + "key": "item_1617187056579.bibliographicPageEnd", + "type": "text", + "title": "終了ページ", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + }, + { + "key": "item_1617187056579.bibliographicNumberOfPages", + "type": "text", + "title": "ページ数", + "title_i18n": { + "en": "Number of Page", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Page", + "ja": "ページ数" + } + }, + { + "key": "item_1617187056579.bibliographicIssueDates", + "type": "fieldset", + "items": [ + { + "key": "item_1617187056579.bibliographicIssueDates.bibliographicIssueDate", + "type": "template", + "title": "日付", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + }, + { + "key": "item_1617187056579.bibliographicIssueDates.bibliographicIssueDateType", + "type": "select", + "title": "日付タイプ", + "titleMap": [ + { + "name": "Issued", + "value": "Issued" + } + ], + "title_i18n": { + "en": "Date Type", + "ja": "日付タイプ" + }, + "title_i18n_temp": { + "en": "Date Type", + "ja": "日付タイプ" + } + } + ], + "title": "発行日", + "title_i18n": { + "en": "Issue Date", + "ja": "発行日" + }, + "title_i18n_temp": { + "en": "Issue Date", + "ja": "発行日" + } + } + ], + "title": "Bibliographic Information", + "title_i18n": { + "en": "Bibliographic Information", + "ja": "書誌情報" + } + }, + { + "key": "item_1617187087799", + "type": "fieldset", + "items": [ + { + "key": "item_1617187087799.subitem_1551256171004", + "type": "text", + "title": "Dissertation Number", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + }, + "title_i18n_temp": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + } + ], + "title": "Dissertation Number", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + }, + { + "add": "New", + "key": "item_1617187112279", + "items": [ + { + "key": "item_1617187112279[].subitem_1551256126428", + "type": "text", + "title": "Degree Name", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + }, + "title_i18n_temp": { + "en": "Degree Name", + "ja": "学位名" + } + }, + { + "key": "item_1617187112279[].subitem_1551256129013", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Name", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + } + }, + { + "key": "item_1617187136212", + "type": "fieldset", + "items": [ + { + "key": "item_1617187136212.subitem_1551256096004", + "type": "template", + "title": "Date Granted", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.html", + "title_i18n_temp": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + } + ], + "title": "Date Granted", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + }, + { + "add": "New", + "key": "item_1617944105607", + "items": [ + { + "add": "New", + "key": "item_1617944105607[].subitem_1551256015892", + "items": [ + { + "key": "item_1617944105607[].subitem_1551256015892[].subitem_1551256027296", + "type": "text", + "title": "Degree Grantor Name Identifier", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + { + "key": "item_1617944105607[].subitem_1551256015892[].subitem_1551256029891", + "type": "select", + "title": "Degree Grantor Name Identifier Scheme", + "titleMap": [ + { + "name": "kakenhi", + "value": "kakenhi" + } + ], + "title_i18n": { + "en": "Degree Grantor Name Identifier Scheme", + "ja": "学位授与機関識別子Scheme" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier Scheme", + "ja": "学位授与機関識別子Scheme" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Grantor Name Identifier", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + { + "add": "New", + "key": "item_1617944105607[].subitem_1551256037922", + "items": [ + { + "key": "item_1617944105607[].subitem_1551256037922[].subitem_1551256042287", + "type": "text", + "title": "Degree Grantor Name", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + }, + { + "key": "item_1617944105607[].subitem_1551256037922[].subitem_1551256047619", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Grantor Name", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Degree Grantor", + "title_i18n": { + "en": "Degree Grantor", + "ja": "学位授与機関" + } + }, + { + "add": "New", + "key": "item_1617187187528", + "items": [ + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711633003", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711633003[].subitem_1599711636923", + "type": "text", + "title": "Conference Name", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + { + "key": "item_1617187187528[].subitem_1599711633003[].subitem_1599711645590", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Name", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + { + "key": "item_1617187187528[].subitem_1599711655652", + "type": "text", + "title": "Conference Sequence", + "title_i18n": { + "en": "Conference Sequence", + "ja": "回次" + }, + "title_i18n_temp": { + "en": "Conference Sequence", + "ja": "回次" + } + }, + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711660052", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711660052[].subitem_1599711680082", + "type": "text", + "title": "Conference Sponsor", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + { + "key": "item_1617187187528[].subitem_1599711660052[].subitem_1599711686511", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Sponsor", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392", + "type": "fieldset", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711731891", + "type": "text", + "title": "Start Year", + "title_i18n": { + "en": "Start Year", + "ja": "開始年" + }, + "title_i18n_temp": { + "en": "Start Year", + "ja": "開始年" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711727603", + "type": "text", + "title": "Start Month", + "title_i18n": { + "en": "Start Month", + "ja": "開始月" + }, + "title_i18n_temp": { + "en": "Start Month", + "ja": "開始月" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711712451", + "type": "text", + "title": "Start Day", + "title_i18n": { + "en": "Start Day", + "ja": "開始日" + }, + "title_i18n_temp": { + "en": "Start Day", + "ja": "開始日" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711743722", + "type": "text", + "title": "End Year", + "title_i18n": { + "en": "End Year", + "ja": "終了年" + }, + "title_i18n_temp": { + "en": "End Year", + "ja": "終了年" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711739022", + "type": "text", + "title": "End Month", + "title_i18n": { + "en": "End Month", + "ja": "終了月" + }, + "title_i18n_temp": { + "en": "End Month", + "ja": "終了月" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711704251", + "type": "text", + "title": "Conference Date", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711735410", + "type": "text", + "title": "End Day", + "title_i18n": { + "en": "End Day", + "ja": "終了日" + }, + "title_i18n_temp": { + "en": "End Day", + "ja": "終了日" + } + }, + { + "key": "item_1617187187528[].subitem_1599711699392.subitem_1599711745532", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "title": "Conference Date", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711758470", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711758470[].subitem_1599711769260", + "type": "text", + "title": "Conference Venue", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + { + "key": "item_1617187187528[].subitem_1599711758470[].subitem_1599711775943", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Venue", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + { + "add": "New", + "key": "item_1617187187528[].subitem_1599711788485", + "items": [ + { + "key": "item_1617187187528[].subitem_1599711788485[].subitem_1599711798761", + "type": "text", + "title": "Conference Place", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + { + "key": "item_1617187187528[].subitem_1599711788485[].subitem_1599711803382", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference Place", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + { + "key": "item_1617187187528[].subitem_1599711813532", + "type": "select", + "title": "Conference Country", + "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" + } + ], + "title_i18n": { + "en": "Conference Country", + "ja": "開催国" + }, + "title_i18n_temp": { + "en": "Conference Country", + "ja": "開催国" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Conference", + "title_i18n": { + "en": "Conference", + "ja": "会議記述" + } + }, + { + "add": "New", + "key": "item_1617605131499", + "items": [ + { + "key": "item_1617605131499[].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_1617605131499[].url", + "type": "fieldset", + "items": [ + { + "key": "item_1617605131499[].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_1617605131499[].url.label", + "type": "text", + "title": "ラベル", + "feedback": false, + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + }, + "disableSuccessState": true + }, + { + "key": "item_1617605131499[].url.objectType", + "type": "select", + "title": "オブジェクトタイプ", + "feedback": false, + "titleMap": [ + { + "name": "abstract", + "value": "abstract" + }, + { + "name": "summary", + "value": "summary" + }, + { + "name": "fulltext", + "value": "fulltext" + }, + { + "name": "thumbnail", + "value": "thumbnail" + }, + { + "name": "other", + "value": "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_1617605131499[].format", + "type": "text", + "title": "フォーマット", + "title_i18n": { + "en": "Format", + "ja": "フォーマット" + }, + "title_i18n_temp": { + "en": "Format", + "ja": "フォーマット" + } + }, + { + "add": "New", + "key": "item_1617605131499[].filesize", + "items": [ + { + "key": "item_1617605131499[].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_1617605131499[].fileDate", + "items": [ + { + "key": "item_1617605131499[].fileDate[].fileDateType", + "type": "select", + "title": "日付タイプ", + "titleMap": [ + { + "name": "Accepted", + "value": "Accepted" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Date Type", + "ja": "日付タイプ" + }, + "title_i18n_temp": { + "en": "Date Type", + "ja": "日付タイプ" + } + }, + { + "key": "item_1617605131499[].fileDate[].fileDateValue", + "type": "template", + "title": "日付", + "format": "yyyy-MM-dd", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker_multi_format.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_1617605131499[].version", + "type": "text", + "title": "バージョン情報", + "title_i18n": { + "en": "Version Information", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version Information", + "ja": "バージョン情報" + } + }, + { + "key": "item_1617605131499[].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_1617605131499[].licensetype", + "type": "select", + "title": "ライセンス", + "titleMap": [], + "title_i18n": { + "en": "License", + "ja": "ライセンス" + }, + "title_i18n_temp": { + "en": "License", + "ja": "ライセンス" + } + }, + { + "key": "item_1617605131499[].licensefree", + "type": "textarea", + "notitle": true, + "condition": "model.item_1617605131499[arrayIndex].licensetype == 'license_free'", + "title_i18n": { + "en": "自由ライセンス", + "ja": "自由ライセンス" + } + }, + { + "type": "template", + "title": "剽窃チェック", + "template": "", + "title_i18n": { + "en": "Check Plagiarism", + "ja": "剽窃チェック" + } + }, + { + "key": "item_1617605131499[].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_1617605131499[].date[0].dateValue", + "type": "template", + "title": "公開日", + "format": "yyyy-MM-dd", + "condition": "model.item_1617605131499[arrayIndex].accessrole == 'open_date'", + "title_i18n": { + "en": "Opendate", + "ja": "公開日" + }, + "templateUrl": "/static/templates/weko_deposit/datepicker.html" + }, + { + "key": "item_1617605131499[].groups", + "type": "select", + "title": "グループ", + "titleMap": [], + "condition": "model.item_1617605131499[arrayIndex].accessrole == 'open_login'", + "title_i18n": { + "en": "Group", + "ja": "グループ" + }, + "title_i18n_temp": { + "en": "Group", + "ja": "グループ" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "File", + "title_i18n": { + "en": "File", + "ja": "ファイル情報" + } + }, + { + "add": "New", + "key": "item_1617620223087", + "items": [ + { + "key": "item_1617620223087[].subitem_1565671149650", + "type": "select", + "title": "Language", + "titleMap": [ + { + "name": "ja", + "value": "ja" + }, + { + "name": "ja-Kana", + "value": "ja-Kana" + }, + { + "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" + } + ], + "title_i18n": { + "en": "Language", + "ja": "言語" + }, + "title_i18n_temp": { + "en": "Language", + "ja": "言語" + } + }, + { + "key": "item_1617620223087[].subitem_1565671169640", + "type": "text", + "title": "Banner Headline", + "title_i18n": { + "en": "Banner Headline", + "ja": "大見出し" + }, + "title_i18n_temp": { + "en": "Banner Headline", + "ja": "大見出し" + } + }, + { + "key": "item_1617620223087[].subitem_1565671178623", + "type": "text", + "title": "Subheading", + "title_i18n": { + "en": "Subheading", + "ja": "小見出し" + }, + "title_i18n_temp": { + "en": "Subheading", + "ja": "小見出し" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "Heading", + "title_i18n": { + "en": "Heading", + "ja": "見出し" + } + }, + { + "add": "New", + "key": "item_1662046377046", + "items": [ + { + "add": "New", + "key": "item_1662046377046[].subitem_thumbnail", + "items": [ + { + "key": "item_1662046377046[].subitem_thumbnail[].thumbnail_url", + "type": "text", + "title": "URI", + "readonly": true, + "title_i18n": { + "en": "URI", + "ja": "URI" + }, + "title_i18n_temp": { + "en": "URI", + "ja": "URI" + } + }, + { + "key": "item_1662046377046[].subitem_thumbnail[].thumbnail_label", + "type": "text", + "title": "ラベル", + "readonly": true, + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "URI", + "title_i18n": { + "en": "URI", + "ja": "URI" + } + } + ], + "style": { + "add": "btn-success" + }, + "title": "サムネイル", + "title_i18n": { + "en": "thumbnail", + "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", + "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_1617186331708": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551255647225": { + "type": "string", + "title": "Title", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "subitem_1551255648112": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "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", + "properties": { + "subitem_1551255720400": { + "type": "string", + "title": "Alternative Title", + "format": "text", + "title_i18n": { + "en": "Alternative Title", + "ja": "その他のタイトル" + }, + "title_i18n_temp": { + "en": "Alternative Title", + "ja": "その他のタイトル" + } + }, + "subitem_1551255721061": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "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", + "properties": { + "iscreator": { + "type": "string", + "title": "iscreator", + "format": "text", + "uniqueKey": "item_1617186419668_iscreator", + "title_i18n": { + "en": "", + "ja": "" + } + }, + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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_i18n_temp": { + "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": "姓名" + }, + "title_i18n_temp": { + "en": "Name", + "ja": "姓名" + } + }, + "creatorNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者姓名", + "format": "array" + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "作成者識別子", + "format": "text", + "title_i18n": { + "en": "Creator Identifier", + "ja": "作成者識別子" + }, + "title_i18n_temp": { + "en": "Creator Identifier", + "ja": "作成者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "作成者識別子URI", + "format": "text", + "title_i18n": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + }, + "title_i18n_temp": { + "en": "Creator Identifier URI", + "ja": "作成者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "作成者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "affiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + } + }, + "affiliationNameIdentifierURI": { + "type": "string", + "title": "所属機関識別子URI", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "affiliationNameIdentifierScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + } + } + }, + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "creatorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "作成者別名", + "format": "array" + } + } + }, + "title": "Creator", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186476635": { + "type": "object", + "title": "Access Rights", + "properties": { + "subitem_1522299639480": { + "enum": [ + null, + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ], + "type": [ + "null", + "string" + ], + "title": "アクセス権", + "format": "select", + "currentEnum": [ + "embargoed access", + "metadata only access", + "open access", + "restricted access" + ] + }, + "subitem_1600958577026": { + "type": "string", + "title": "アクセス権URI", + "format": "text", + "title_i18n": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + }, + "title_i18n_temp": { + "en": "Access Rights URI", + "ja": "アクセス権URI" + } + } + } + }, + "item_1617186499011": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522650717957": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650727486": { + "type": "string", + "title": "権利情報Resource", + "format": "text", + "title_i18n": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + }, + "title_i18n_temp": { + "en": "Rights Information Resource", + "ja": "権利情報Resource" + } + }, + "subitem_1522651041219": { + "type": "string", + "title": "権利情報", + "format": "text", + "title_i18n": { + "en": "Rights Information", + "ja": "権利情報" + }, + "title_i18n_temp": { + "en": "Rights Information", + "ja": "権利情報" + } + } + } + }, + "title": "Rights", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186609386": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522299896455": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300014469": { + "enum": [ + null, + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ], + "type": [ + "null", + "string" + ], + "title": "主題Scheme", + "format": "select", + "currentEnum": [ + "BSH", + "DDC", + "LCC", + "LCSH", + "MeSH", + "NDC", + "NDLC", + "NDLSH", + "SciVal", + "UDC", + "Other" + ] + }, + "subitem_1522300048512": { + "type": "string", + "title": "主題URI", + "format": "text", + "title_i18n": { + "en": "Subject URI", + "ja": "主題URI" + }, + "title_i18n_temp": { + "en": "Subject URI", + "ja": "主題URI" + } + }, + "subitem_1523261968819": { + "type": "string", + "title": "主題", + "format": "text", + "title_i18n": { + "en": "Subject", + "ja": "主題" + }, + "title_i18n_temp": { + "en": "Subject", + "ja": "主題" + } + } + } + }, + "title": "Subject", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186626617": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_description": { + "type": "string", + "title": "内容記述", + "format": "textarea", + "title_i18n": { + "en": "Description", + "ja": "内容記述" + }, + "title_i18n_temp": { + "en": "Description", + "ja": "内容記述" + } + }, + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "properties": { + "subitem_1522300295150": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522300316516": { + "type": "string", + "title": "出版者", + "format": "text", + "title_i18n": { + "en": "Publisher", + "ja": "出版者" + }, + "title_i18n_temp": { + "en": "Publisher", + "ja": "出版者" + } + } + } + }, + "title": "Publisher", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186660861": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522300695726": { + "enum": [ + null, + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Available", + "Collected", + "Copyrighted", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ] + }, + "subitem_1522300722591": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + } + } + }, + "title": "Date", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186702042": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551255818386": { + "enum": [ + null, + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "jpn", + "eng", + "fra", + "ita", + "spa", + "zho", + "rus", + "lat", + "msa", + "epo", + "ara", + "ell", + "kor" + ] + } + } + }, + "title": "Language", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186783814": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_identifier_uri": { + "type": "string", + "title": "識別子", + "format": "text", + "title_i18n": { + "en": "Identifier", + "ja": "識別子" + }, + "title_i18n_temp": { + "en": "Identifier", + "ja": "識別子" + } + }, + "subitem_identifier_type": { + "enum": [ + null, + "DOI", + "HDL", + "URI" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "DOI", + "HDL", + "URI" + ] + } + } + }, + "title": "Identifier", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186819068": { + "type": "object", + "title": "Identifier Registration", + "properties": { + "subitem_identifier_reg_text": { + "type": "string", + "title": "ID登録", + "format": "text", + "title_i18n": { + "en": "Identifier Registration", + "ja": "ID登録" + }, + "title_i18n_temp": { + "en": "Identifier Registration", + "ja": "ID登録" + } + }, + "subitem_identifier_reg_type": { + "enum": [ + null, + "JaLC", + "Crossref", + "DataCite", + "PMID" + ], + "type": [ + "null", + "string" + ], + "title": "ID登録タイプ", + "format": "select", + "currentEnum": [ + "JaLC", + "Crossref", + "DataCite", + "PMID" + ] + } + } + }, + "item_1617186859717": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522658018441": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522658031721": { + "type": "string", + "title": "時間的範囲", + "format": "text", + "title_i18n": { + "en": "Temporal", + "ja": "時間的範囲" + }, + "title_i18n_temp": { + "en": "Temporal", + "ja": "時間的範囲" + } + } + } + }, + "title": "Temporal", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186882738": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_geolocation_box": { + "type": "object", + "title": "位置情報(空間)", + "format": "object", + "properties": { + "subitem_east_longitude": { + "type": "string", + "title": "東部経度", + "format": "text", + "title_i18n": { + "en": "East Bound Longitude", + "ja": "東部経度" + }, + "title_i18n_temp": { + "en": "East Bound Longitude", + "ja": "東部経度" + } + }, + "subitem_north_latitude": { + "type": "string", + "title": "北部緯度", + "format": "text", + "title_i18n": { + "en": "North Bound Latitude", + "ja": "北部緯度" + }, + "title_i18n_temp": { + "en": "North Bound Latitude", + "ja": "北部緯度" + } + }, + "subitem_south_latitude": { + "type": "string", + "title": "南部緯度", + "format": "text", + "title_i18n": { + "en": "South Bound Latitude", + "ja": "南部緯度" + }, + "title_i18n_temp": { + "en": "South Bound Latitude", + "ja": "南部緯度" + } + }, + "subitem_west_longitude": { + "type": "string", + "title": "西部経度", + "format": "text", + "title_i18n": { + "en": "West Bound Longitude", + "ja": "西部経度" + }, + "title_i18n_temp": { + "en": "West Bound Longitude", + "ja": "西部経度" + } + } + } + }, + "subitem_geolocation_place": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_geolocation_place_text": { + "type": "string", + "title": "位置情報(自由記述)", + "format": "text", + "title_i18n": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + }, + "title_i18n_temp": { + "en": "Geo Location Place", + "ja": "位置情報(自由記述)" + } + } + } + }, + "title": "位置情報(自由記述)", + "format": "array" + }, + "subitem_geolocation_point": { + "type": "object", + "title": "位置情報(点)", + "format": "object", + "properties": { + "subitem_point_latitude": { + "type": "string", + "title": "緯度", + "format": "text", + "title_i18n": { + "en": "Point Latitude", + "ja": "緯度" + }, + "title_i18n_temp": { + "en": "Point Latitude", + "ja": "緯度" + } + }, + "subitem_point_longitude": { + "type": "string", + "title": "経度", + "format": "text", + "title_i18n": { + "en": "Point Longitude", + "ja": "経度" + }, + "title_i18n_temp": { + "en": "Point Longitude", + "ja": "経度" + } + } + } + } + } + }, + "title": "Geo Location", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186901218": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522399143519": { + "type": "object", + "title": "助成機関識別子", + "format": "object", + "properties": { + "subitem_1522399281603": { + "enum": [ + null, + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "助成機関識別子タイプ", + "format": "select", + "currentEnum": [ + "Crossref Funder", + "GRID", + "ISNI", + "Other", + "kakenhi" + ] + }, + "subitem_1522399333375": { + "type": "string", + "title": "助成機関識別子", + "format": "text", + "title_i18n": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + }, + "title_i18n_temp": { + "en": "Funder Identifier", + "ja": "助成機関識別子" + } + } + } + }, + "subitem_1522399412622": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522399416691": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522737543681": { + "type": "string", + "title": "助成機関名", + "format": "text", + "title_i18n": { + "en": "Funder Name", + "ja": "助成機関名" + }, + "title_i18n_temp": { + "en": "Funder Name", + "ja": "助成機関名" + } + } + } + }, + "title": "助成機関名", + "format": "array" + }, + "subitem_1522399571623": { + "type": "object", + "title": "研究課題番号", + "format": "object", + "properties": { + "subitem_1522399585738": { + "type": "string", + "title": "研究課題URI", + "format": "text", + "title_i18n": { + "en": "Award URI", + "ja": "研究課題URI" + }, + "title_i18n_temp": { + "en": "Award URI", + "ja": "研究課題URI" + } + }, + "subitem_1522399628911": { + "type": "string", + "title": "研究課題番号", + "format": "text", + "title_i18n": { + "en": "Award Number", + "ja": "研究課題番号" + }, + "title_i18n_temp": { + "en": "Award Number", + "ja": "研究課題番号" + } + } + } + }, + "subitem_1522399651758": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1522721910626": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522721929892": { + "type": "string", + "title": "研究課題名", + "format": "text", + "title_i18n": { + "en": "Award Title", + "ja": "研究課題名" + }, + "title_i18n_temp": { + "en": "Award Title", + "ja": "研究課題名" + } + } + } + }, + "title": "研究課題名", + "format": "array" + } + } + }, + "title": "Funding Reference", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186920753": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522646500366": { + "enum": [ + null, + "PISSN", + "EISSN", + "ISSN", + "NCID" + ], + "type": [ + "null", + "string" + ], + "title": "収録物識別子タイプ", + "format": "select", + "currentEnum": [ + "PISSN", + "EISSN", + "ISSN", + "NCID" + ] + }, + "subitem_1522646572813": { + "type": "string", + "title": "収録物識別子", + "format": "text", + "title_i18n": { + "en": "Source Identifier", + "ja": "収録物識別子" + }, + "title_i18n_temp": { + "en": "Source Identifier", + "ja": "収録物識別子" + } + } + } + }, + "title": "Source Identifier", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186941041": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522650068558": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1522650091861": { + "type": "string", + "title": "収録物名", + "format": "text", + "title_i18n": { + "en": "Source Title", + "ja": "収録物名" + }, + "title_i18n_temp": { + "en": "Source Title", + "ja": "収録物名" + } + } + } + }, + "title": "Source Title", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617186959569": { + "type": "object", + "title": "Volume Number", + "properties": { + "subitem_1551256328147": { + "type": "string", + "title": "Volume Number", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + } + } + }, + "item_1617186981471": { + "type": "object", + "title": "Issue Number", + "properties": { + "subitem_1551256294723": { + "type": "string", + "title": "Issue Number", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + } + } + }, + "item_1617186994930": { + "type": "object", + "title": "Number of Pages", + "properties": { + "subitem_1551256248092": { + "type": "string", + "title": "Number of Pages", + "format": "text", + "title_i18n": { + "en": "Number of Pages", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Pages", + "ja": "ページ数" + } + } + } + }, + "item_1617187024783": { + "type": "object", + "title": "Page Start", + "properties": { + "subitem_1551256198917": { + "type": "string", + "title": "Page Start", + "format": "text", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + } + } + }, + "item_1617187045071": { + "type": "object", + "title": "Page End", + "properties": { + "subitem_1551256185532": { + "type": "string", + "title": "Page End", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + } + } + }, + "item_1617187056579": { + "type": "object", + "title": "Bibliographic Information", + "properties": { + "bibliographicPageEnd": { + "type": "string", + "title": "終了ページ", + "format": "text", + "title_i18n": { + "en": "Page End", + "ja": "終了ページ" + }, + "title_i18n_temp": { + "en": "Page End", + "ja": "終了ページ" + } + }, + "bibliographic_titles": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "bibliographic_title": { + "type": "string", + "title": "タイトル", + "format": "text", + "title_i18n": { + "en": "Title", + "ja": "タイトル" + }, + "title_i18n_temp": { + "en": "Title", + "ja": "タイトル" + } + }, + "bibliographic_titleLang": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "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", + "title_i18n": { + "en": "Page Start", + "ja": "開始ページ" + }, + "title_i18n_temp": { + "en": "Page Start", + "ja": "開始ページ" + } + }, + "bibliographicIssueDates": { + "type": "object", + "title": "発行日", + "format": "object", + "properties": { + "bibliographicIssueDate": { + "type": "string", + "title": "日付", + "format": "datetime", + "title_i18n": { + "en": "Date", + "ja": "日付" + }, + "title_i18n_temp": { + "en": "Date", + "ja": "日付" + } + }, + "bibliographicIssueDateType": { + "enum": [ + null, + "Issued" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Issued" + ] + } + } + }, + "bibliographicIssueNumber": { + "type": "string", + "title": "号", + "format": "text", + "title_i18n": { + "en": "Issue Number", + "ja": "号" + }, + "title_i18n_temp": { + "en": "Issue Number", + "ja": "号" + } + }, + "bibliographicVolumeNumber": { + "type": "string", + "title": "巻", + "format": "text", + "title_i18n": { + "en": "Volume Number", + "ja": "巻" + }, + "title_i18n_temp": { + "en": "Volume Number", + "ja": "巻" + } + }, + "bibliographicNumberOfPages": { + "type": "string", + "title": "ページ数", + "format": "text", + "title_i18n": { + "en": "Number of Page", + "ja": "ページ数" + }, + "title_i18n_temp": { + "en": "Number of Page", + "ja": "ページ数" + } + } + } + }, + "item_1617187087799": { + "type": "object", + "title": "Dissertation Number", + "properties": { + "subitem_1551256171004": { + "type": "string", + "title": "Dissertation Number", + "format": "text", + "title_i18n": { + "en": "Dissertation Number", + "ja": "学位授与番号" + }, + "title_i18n_temp": { + "en": "Dissertation Number", + "ja": "学位授与番号" + } + } + } + }, + "item_1617187112279": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551256126428": { + "type": "string", + "title": "Degree Name", + "format": "text", + "title_i18n": { + "en": "Degree Name", + "ja": "学位名" + }, + "title_i18n_temp": { + "en": "Degree Name", + "ja": "学位名" + } + }, + "subitem_1551256129013": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "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", + "properties": { + "subitem_1551256096004": { + "type": "string", + "title": "Date Granted", + "format": "datetime", + "title_i18n": { + "en": "Date Granted", + "ja": "学位授与年月日" + }, + "title_i18n_temp": { + "en": "Date Granted", + "ja": "学位授与年月日" + } + } + } + }, + "item_1617187187528": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1599711633003": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711636923": { + "type": "string", + "title": "Conference Name", + "format": "text", + "title_i18n": { + "en": "Conference Name", + "ja": "会議名" + }, + "title_i18n_temp": { + "en": "Conference Name", + "ja": "会議名" + } + }, + "subitem_1599711645590": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Name", + "format": "array" + }, + "subitem_1599711655652": { + "type": "string", + "title": "Conference Sequence", + "format": "text", + "title_i18n": { + "en": "Conference Sequence", + "ja": "回次" + }, + "title_i18n_temp": { + "en": "Conference Sequence", + "ja": "回次" + } + }, + "subitem_1599711660052": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711680082": { + "type": "string", + "title": "Conference Sponsor", + "format": "text", + "title_i18n": { + "en": "Conference Sponsor", + "ja": "主催機関" + }, + "title_i18n_temp": { + "en": "Conference Sponsor", + "ja": "主催機関" + } + }, + "subitem_1599711686511": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Sponsor", + "format": "array" + }, + "subitem_1599711699392": { + "type": "object", + "title": "Conference Date", + "format": "object", + "properties": { + "subitem_1599711704251": { + "type": "string", + "title": "Conference Date", + "format": "text", + "title_i18n": { + "en": "Conference Date", + "ja": "開催期間" + }, + "title_i18n_temp": { + "en": "Conference Date", + "ja": "開催期間" + } + }, + "subitem_1599711712451": { + "type": "string", + "title": "Start Day", + "format": "text", + "title_i18n": { + "en": "Start Day", + "ja": "開始日" + }, + "title_i18n_temp": { + "en": "Start Day", + "ja": "開始日" + } + }, + "subitem_1599711727603": { + "type": "string", + "title": "Start Month", + "format": "text", + "title_i18n": { + "en": "Start Month", + "ja": "開始月" + }, + "title_i18n_temp": { + "en": "Start Month", + "ja": "開始月" + } + }, + "subitem_1599711731891": { + "type": "string", + "title": "Start Year", + "format": "text", + "title_i18n": { + "en": "Start Year", + "ja": "開始年" + }, + "title_i18n_temp": { + "en": "Start Year", + "ja": "開始年" + } + }, + "subitem_1599711735410": { + "type": "string", + "title": "End Day", + "format": "text", + "title_i18n": { + "en": "End Day", + "ja": "終了日" + }, + "title_i18n_temp": { + "en": "End Day", + "ja": "終了日" + } + }, + "subitem_1599711739022": { + "type": "string", + "title": "End Month", + "format": "text", + "title_i18n": { + "en": "End Month", + "ja": "終了月" + }, + "title_i18n_temp": { + "en": "End Month", + "ja": "終了月" + } + }, + "subitem_1599711743722": { + "type": "string", + "title": "End Year", + "format": "text", + "title_i18n": { + "en": "End Year", + "ja": "終了年" + }, + "title_i18n_temp": { + "en": "End Year", + "ja": "終了年" + } + }, + "subitem_1599711745532": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "subitem_1599711758470": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711769260": { + "type": "string", + "title": "Conference Venue", + "format": "text", + "title_i18n": { + "en": "Conference Venue", + "ja": "開催会場" + }, + "title_i18n_temp": { + "en": "Conference Venue", + "ja": "開催会場" + } + }, + "subitem_1599711775943": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Venue", + "format": "array" + }, + "subitem_1599711788485": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1599711798761": { + "type": "string", + "title": "Conference Place", + "format": "text", + "title_i18n": { + "en": "Conference Place", + "ja": "開催地" + }, + "title_i18n_temp": { + "en": "Conference Place", + "ja": "開催地" + } + }, + "subitem_1599711803382": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Conference Place", + "format": "array" + }, + "subitem_1599711813532": { + "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": "Conference Country", + "format": "select", + "currentEnum": [ + "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" + ] + } + } + }, + "title": "Conference", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617258105262": { + "type": "object", + "title": "Resource Type", + "properties": { + "resourceuri": { + "type": "string", + "title": "資源タイプ識別子", + "format": "text", + "title_i18n": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + }, + "title_i18n_temp": { + "en": "Resource Type Identifier", + "ja": "資源タイプ識別子" + } + }, + "resourcetype": { + "enum": [ + null, + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "資源タイプ", + "format": "select", + "currentEnum": [ + "conference paper", + "data paper", + "departmental bulletin paper", + "editorial", + "journal article", + "newspaper", + "periodical", + "review article", + "software paper", + "article", + "book", + "book part", + "cartographic material", + "map", + "conference object", + "conference proceedings", + "conference poster", + "dataset", + "interview", + "image", + "still image", + "moving image", + "video", + "lecture", + "patent", + "internal report", + "report", + "research report", + "technical report", + "policy report", + "report part", + "working paper", + "data management plan", + "sound", + "thesis", + "bachelor thesis", + "master thesis", + "doctoral thesis", + "interactive resource", + "learning object", + "manuscript", + "musical notation", + "research proposal", + "software", + "technical documentation", + "workflow", + "other" + ] + } + } + }, + "item_1617265215918": { + "type": "object", + "title": "Version Type", + "properties": { + "subitem_1522305645492": { + "enum": [ + null, + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ], + "type": [ + "null", + "string" + ], + "title": "出版タイプ", + "format": "select", + "currentEnum": [ + "AO", + "SMUR", + "AM", + "P", + "VoR", + "CVoR", + "EVoR", + "NA" + ] + }, + "subitem_1600292170262": { + "type": "string", + "title": "出版タイプResource", + "format": "text", + "title_i18n": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + }, + "title_i18n_temp": { + "en": "Version Type Resource", + "ja": "出版タイプResource" + } + } + } + }, + "item_1617349709064": { + "type": "array", + "items": { + "type": "object", + "properties": { + "givenNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "givenName": { + "type": "string", + "title": "名", + "format": "text", + "title_i18n": { + "en": "Given Name", + "ja": "名" + }, + "title_i18n_temp": { + "en": "Given Name", + "ja": "名" + } + }, + "givenNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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": "姓" + }, + "title_i18n_temp": { + "en": "Family Name", + "ja": "姓" + } + }, + "familyNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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", + "currentEnum": [ + "ContactPerson", + "DataCollector", + "DataCurator", + "DataManager", + "Distributor", + "Editor", + "HostingInstitution", + "Producer", + "ProjectLeader", + "ProjectManager", + "ProjectMember", + "RelatedPerson", + "Researcher", + "ResearchGroup", + "Sponsor", + "Supervisor", + "WorkPackageLeader", + "Other" + ] + }, + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "寄与者識別子", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + }, + "title_i18n_temp": { + "en": "Contributor Identifier", + "ja": "寄与者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "寄与者識別子URI", + "format": "text", + "title_i18n": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + }, + "title_i18n_temp": { + "en": "Contributor Identifier URI", + "ja": "寄与者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "寄与者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "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_i18n_temp": { + "en": "Email Address", + "ja": "メールアドレス" + } + } + } + }, + "title": "寄与者メールアドレス", + "format": "array" + }, + "contributorNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "lang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "contributorName": { + "type": "string", + "title": "姓名", + "format": "text", + "title_i18n": { + "en": "Name", + "ja": "姓名" + }, + "title_i18n_temp": { + "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": "所属機関名" + }, + "title_i18n_temp": { + "en": "Affiliation Name", + "ja": "所属機関名" + } + }, + "contributorAffiliationNameLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "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" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier URI", + "ja": "所属機関識別子URI" + } + }, + "contributorAffiliationScheme": { + "enum": [ + null, + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ], + "type": [ + "null", + "string" + ], + "title": "所属機関識別子スキーマ", + "format": "select", + "currentEnum": [ + "kakenhi", + "ISNI", + "Ringgold", + "GRID" + ] + }, + "contributorAffiliationNameIdentifier": { + "type": "string", + "title": "所属機関識別子", + "format": "text", + "title_i18n": { + "en": "Affiliation Name Identifier", + "ja": "所属機関識別子" + }, + "title_i18n_temp": { + "en": "Affiliation Name Identifier", + "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": "別名" + }, + "title_i18n_temp": { + "en": "Alternative Name", + "ja": "別名" + } + }, + "contributorAlternativeLang": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "寄与者別名", + "format": "array" + } + } + }, + "title": "Contributor", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617349808926": { + "type": "object", + "title": "Version", + "properties": { + "subitem_1523263171732": { + "type": "string", + "title": "バージョン情報", + "format": "text", + "title_i18n": { + "en": "Version", + "ja": "バージョン情報" + }, + "title_i18n_temp": { + "en": "Version", + "ja": "バージョン情報" + } + } + } + }, + "item_1617351524846": { + "type": "object", + "title": "APC", + "properties": { + "subitem_1523260933860": { + "enum": [ + null, + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ], + "type": [ + "null", + "string" + ], + "title": "APC", + "format": "select", + "currentEnum": [ + "Paid", + "Fully waived", + "Not required", + "Partially waived", + "Not charged", + "Unknown" + ] + } + } + }, + "item_1617353299429": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1522306207484": { + "enum": [ + null, + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ], + "type": [ + "null", + "string" + ], + "title": "関連タイプ", + "format": "select", + "currentEnum": [ + "isVersionOf", + "hasVersion", + "isPartOf", + "hasPart", + "isReferencedBy", + "references", + "isFormatOf", + "hasFormat", + "isReplacedBy", + "replaces", + "isRequiredBy", + "requires", + "isSupplementTo", + "isSupplementedBy", + "isIdenticalTo", + "isDerivedFrom", + "isSourceOf" + ] + }, + "subitem_1522306287251": { + "type": "object", + "title": "関連識別子", + "format": "object", + "properties": { + "subitem_1522306382014": { + "enum": [ + null, + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ], + "type": [ + "null", + "string" + ], + "title": "識別子タイプ", + "format": "select", + "currentEnum": [ + "ARK", + "arXiv", + "DOI", + "HDL", + "ICHUSHI", + "ISBN", + "J-GLOBAL", + "Local", + "PISSN", + "EISSN", + "ISSN(非推奨)", + "NAID", + "NCID", + "PMID", + "PURL", + "SCOPUS", + "URI", + "WOS" + ] + }, + "subitem_1522306436033": { + "type": "string", + "title": "関連識別子", + "format": "text", + "title_i18n": { + "en": "Relation Identifier", + "ja": "関連識別子" + }, + "title_i18n_temp": { + "en": "Relation Identifier", + "ja": "関連識別子" + } + } + } + }, + "subitem_1523320863692": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1523320867455": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "言語", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1523320909613": { + "type": "string", + "title": "関連名称", + "format": "text", + "title_i18n": { + "en": "Related Title", + "ja": "関連名称" + }, + "title_i18n_temp": { + "en": "Related Title", + "ja": "関連名称" + } + } + } + }, + "title": "関連名称", + "format": "array" + } + } + }, + "title": "Relation", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617605131499": { + "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", + "summary", + "fulltext", + "thumbnail", + "other" + ], + "type": [ + "null", + "string" + ], + "title": "オブジェクトタイプ", + "format": "select", + "currentEnum": [ + "abstract", + "summary", + "fulltext", + "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", + "Created", + "Issued", + "Submitted", + "Updated", + "Valid" + ], + "type": [ + "null", + "string" + ], + "title": "日付タイプ", + "format": "select", + "currentEnum": [ + "Accepted", + "Collected", + "Copyrighted", + "Created", + "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": "File", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617610673286": { + "type": "array", + "items": { + "type": "object", + "properties": { + "nameIdentifiers": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "nameIdentifier": { + "type": "string", + "title": "権利者識別子", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier", + "ja": "権利者識別子" + } + }, + "nameIdentifierURI": { + "type": "string", + "title": "権利者識別子URI", + "format": "text", + "title_i18n": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + }, + "title_i18n_temp": { + "en": "Right Holder Identifier URI", + "ja": "権利者識別子URI" + } + }, + "nameIdentifierScheme": { + "type": [ + "null", + "string" + ], + "title": "権利者識別子Scheme", + "format": "select", + "currentEnum": [] + } + } + }, + "title": "権利者識別子", + "format": "array" + }, + "rightHolderNames": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "rightHolderName": { + "type": "string", + "title": "権利者名", + "format": "text", + "title_i18n": { + "en": "Right Holder Name", + "ja": "権利者名" + }, + "title_i18n_temp": { + "en": "Right Holder Name", + "ja": "権利者名" + } + }, + "rightHolderLanguage": { + "enum": [ + null, + "ja", + "ja-Kana", + "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", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "権利者名", + "format": "array" + } + } + }, + "title": "Rights Holder", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617620223087": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1565671149650": { + "enum": [ + null, + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "ja-Kana", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + }, + "subitem_1565671169640": { + "type": "string", + "title": "Banner Headline", + "format": "text", + "title_i18n": { + "en": "Banner Headline", + "ja": "大見出し" + }, + "title_i18n_temp": { + "en": "Banner Headline", + "ja": "大見出し" + } + }, + "subitem_1565671178623": { + "type": "string", + "title": "Subheading", + "format": "text", + "title_i18n": { + "en": "Subheading", + "ja": "小見出し" + }, + "title_i18n_temp": { + "en": "Subheading", + "ja": "小見出し" + } + } + } + }, + "title": "Heading", + "maxItems": "9999", + "minItems": "1" + }, + "item_1617944105607": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_1551256015892": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256027296": { + "type": "string", + "title": "Degree Grantor Name Identifier", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name Identifier", + "ja": "学位授与機関識別子" + } + }, + "subitem_1551256029891": { + "enum": [ + null, + "kakenhi" + ], + "type": [ + "null", + "string" + ], + "title": "Degree Grantor Name Identifier Scheme", + "format": "select", + "currentEnum": [ + "kakenhi" + ] + } + } + }, + "title": "Degree Grantor Name Identifier", + "format": "array" + }, + "subitem_1551256037922": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "subitem_1551256042287": { + "type": "string", + "title": "Degree Grantor Name", + "format": "text", + "title_i18n": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + }, + "title_i18n_temp": { + "en": "Degree Grantor Name", + "ja": "学位授与機関名" + } + }, + "subitem_1551256047619": { + "enum": [ + null, + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ], + "type": [ + "null", + "string" + ], + "title": "Language", + "format": "select", + "currentEnum": [ + "ja", + "en", + "fr", + "it", + "de", + "es", + "zh-cn", + "zh-tw", + "ru", + "la", + "ms", + "eo", + "ar", + "el", + "ko" + ] + } + } + }, + "title": "Degree Grantor Name", + "format": "array" + } + } + }, + "title": "Degree Grantor", + "maxItems": "9999", + "minItems": "1" + }, + "item_1662046377046": { + "type": "array", + "items": { + "type": "object", + "properties": { + "subitem_thumbnail": { + "type": "array", + "items": { + "type": "object", + "format": "object", + "properties": { + "thumbnail_url": { + "type": "string", + "title": "URI", + "format": "text", + "title_i18n": { + "en": "URI", + "ja": "URI" + }, + "title_i18n_temp": { + "en": "URI", + "ja": "URI" + } + }, + "thumbnail_label": { + "type": "string", + "title": "ラベル", + "format": "text", + "title_i18n": { + "en": "Label", + "ja": "ラベル" + }, + "title_i18n_temp": { + "en": "Label", + "ja": "ラベル" + } + } + } + }, + "title": "URI", + "format": "array" + } + } + }, + "title": "サムネイル", + "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" + } + }, + "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": "", + "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_1617186331708": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "title": { + "@value": "subitem_1551255647225", + "@attributes": { + "xml:lang": "subitem_1551255648112" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "title": { + "@value": "subitem_1551255647225" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "title": { + "@value": "subitem_1551255647225", + "@attributes": { + "xml:lang": "subitem_1551255648112" + } + } + } + }, + "item_1617186385884": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "alternative": { + "@value": "subitem_1551255720400", + "@attributes": { + "xml:lang": "subitem_1551255721061" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "title": { + "@value": "subitem_1551255720400" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "alternative": { + "@value": "subitem_1551255720400", + "@attributes": { + "xml:lang": "subitem_1551255721061" + } + } + } + }, + "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_1522299639480", + "@attributes": { + "rdf:resource": "subitem_1600958577026" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "rights": { + "@value": "subitem_1522299639480" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "accessRights": { + "@value": "subitem_1522299639480", + "@attributes": { + "rdf:resource": "subitem_1600958577026" + } + } + } + }, + "item_1617186499011": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "rights": { + "@value": "subitem_1522651041219", + "@attributes": { + "xml:lang": "subitem_1522650717957", + "rdf:resource": "subitem_1522650727486" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "rights": { + "@value": "subitem_1522651041219" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "rights": { + "@value": "subitem_1522651041219", + "@attributes": { + "xml:lang": "subitem_1522650717957", + "rdf:resource": "subitem_1522650727486" + } + } + } + }, + "item_1617186609386": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "subject": { + "@value": "subitem_1523261968819", + "@attributes": { + "xml:lang": "subitem_1522299896455", + "subjectURI": "subitem_1522300048512", + "subjectScheme": "subitem_1522300014469" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "subject": { + "@value": "subitem_1523261968819" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "subject": { + "@value": "subitem_1523261968819", + "@attributes": { + "xml:lang": "subitem_1522299896455", + "subjectURI": "subitem_1522300048512", + "subjectScheme": "subitem_1522300014469" + } + } + } + }, + "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_1522300316516", + "@attributes": { + "xml:lang": "subitem_1522300295150" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "publisher": { + "@value": "subitem_1522300316516" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "publisher": { + "@value": "subitem_1522300316516", + "@attributes": { + "xml:lang": "subitem_1522300295150" + } + } + } + }, + "item_1617186660861": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "date": { + "@value": "subitem_1522300722591", + "@attributes": { + "dateType": "subitem_1522300695726" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "date": { + "@value": "subitem_1522300722591" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "date": { + "@value": "subitem_1522300722591", + "@attributes": { + "dateType": "subitem_1522300695726" + } + } + } + }, + "item_1617186702042": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "language": { + "@value": "subitem_1551255818386" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "language": { + "@value": "subitem_1551255818386" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "language": { + "@value": "subitem_1551255818386" + } + } + }, + "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_1522658031721", + "@attributes": { + "xml:lang": "subitem_1522658018441" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "coverage": { + "@value": "subitem_1522658031721" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "temporal": { + "@value": "subitem_1522658031721", + "@attributes": { + "xml:lang": "subitem_1522658018441" + } + } + } + }, + "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_1522399651758.subitem_1522721929892", + "@attributes": { + "xml:lang": "subitem_1522399651758.subitem_1522721910626" + } + }, + "funderName": { + "@value": "subitem_1522399412622.subitem_1522737543681", + "@attributes": { + "xml:lang": "subitem_1522399412622.subitem_1522399416691" + } + }, + "awardNumber": { + "@value": "subitem_1522399571623.subitem_1522399628911", + "@attributes": { + "awardURI": "subitem_1522399571623.subitem_1522399585738" + } + }, + "funderIdentifier": { + "@value": "subitem_1522399143519.subitem_1522399333375", + "@attributes": { + "funderIdentifierType": "subitem_1522399143519.subitem_1522399281603" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "fundingReference": { + "awardTitle": { + "@value": "subitem_1522399651758.subitem_1522721929892", + "@attributes": { + "xml:lang": "subitem_1522399651758.subitem_1522721910626" + } + }, + "funderName": { + "@value": "subitem_1522399412622.subitem_1522737543681", + "@attributes": { + "xml:lang": "subitem_1522399412622.subitem_1522399416691" + } + }, + "awardNumber": { + "@value": "subitem_1522399571623.subitem_1522399628911", + "@attributes": { + "awardURI": "subitem_1522399571623.subitem_1522399585738" + } + }, + "funderIdentifier": { + "@value": "subitem_1522399143519.subitem_1522399333375", + "@attributes": { + "funderIdentifierType": "subitem_1522399143519.subitem_1522399281603" + } + } + } + } + }, + "item_1617186920753": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceIdentifier": { + "@value": "subitem_1522646572813", + "@attributes": { + "identifierType": "subitem_1522646500366" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1522646572813" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "sourceIdentifier": { + "@value": "subitem_1522646572813", + "@attributes": { + "identifierType": "subitem_1522646500366" + } + } + } + }, + "item_1617186941041": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "sourceTitle": { + "@value": "subitem_1522650091861", + "@attributes": { + "xml:lang": "subitem_1522650068558" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1522650091861" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "sourceTitle": { + "@value": "subitem_1522650091861", + "@attributes": { + "xml:lang": "subitem_1522650068558" + } + } + } + }, + "item_1617186959569": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "volume": { + "@value": "subitem_1551256328147" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256328147" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "volume": { + "@value": "subitem_1551256328147" + } + } + }, + "item_1617186981471": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "issue": { + "@value": "subitem_1551256294723" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256294723" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "issue": { + "@value": "subitem_1551256294723" + } + } + }, + "item_1617186994930": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "numPages": { + "@value": "subitem_1551256248092" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256248092" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "numPages": { + "@value": "subitem_1551256248092" + } + } + }, + "item_1617187024783": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "pageStart": { + "@value": "subitem_1551256198917" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256198917" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "pageStart": { + "@value": "subitem_1551256198917" + } + } + }, + "item_1617187045071": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "pageEnd": { + "@value": "subitem_1551256185532" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256185532" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "pageEnd": { + "@value": "subitem_1551256185532" + } + } + }, + "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_1551256171004" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "identifier": { + "@value": "subitem_1551256171004" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "dissertationNumber": { + "@value": "subitem_1551256171004" + } + } + }, + "item_1617187112279": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "degreeName": { + "@value": "subitem_1551256126428", + "@attributes": { + "xml:lang": "subitem_1551256129013" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "description": { + "@value": "subitem_1551256126428" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "degreeName": { + "@value": "subitem_1551256126428", + "@attributes": { + "xml:lang": "subitem_1551256129013" + } + } + } + }, + "item_1617187136212": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "dateGranted": { + "@value": "subitem_1551256096004" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "date": { + "@value": "subitem_1551256096004" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "dateGranted": { + "@value": "subitem_1551256096004" + } + } + }, + "item_1617187187528": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "conference": { + "conferenceDate": { + "@value": "subitem_1599711699392.subitem_1599711704251", + "@attributes": { + "endDay": "subitem_1599711699392.subitem_1599711735410", + "endYear": "subitem_1599711699392.subitem_1599711743722", + "endMonth": "subitem_1599711699392.subitem_1599711739022", + "startDay": "subitem_1599711699392.subitem_1599711712451", + "xml:lang": "subitem_1599711699392.subitem_1599711745532", + "startYear": "subitem_1599711699392.subitem_1599711731891", + "startMonth": "subitem_1599711699392.subitem_1599711727603" + } + }, + "conferenceName": { + "@value": "subitem_1599711633003.subitem_1599711636923", + "@attributes": { + "xml:lang": "subitem_1599711633003.subitem_1599711645590" + } + }, + "conferenceVenue": { + "@value": "subitem_1599711758470.subitem_1599711769260", + "@attributes": { + "xml:lang": "subitem_1599711758470.subitem_1599711775943" + } + }, + "conferenceCountry": { + "@value": "subitem_1599711813532" + }, + "conferenceSponsor": { + "@value": "subitem_1599711660052.subitem_1599711680082", + "@attributes": { + "xml:lang": "subitem_1599711660052.subitem_1599711686511" + } + }, + "conferenceSequence": { + "@value": "subitem_1599711655652" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "conference": { + "conferenceDate": { + "@value": "subitem_1599711699392.subitem_1599711704251", + "@attributes": { + "endDay": "subitem_1599711699392.subitem_1599711735410", + "endYear": "subitem_1599711699392.subitem_1599711743722", + "endMonth": "subitem_1599711699392.subitem_1599711739022", + "startDay": "subitem_1599711699392.subitem_1599711712451", + "xml:lang": "subitem_1599711699392.subitem_1599711745532", + "startYear": "subitem_1599711699392.subitem_1599711731891", + "startMonth": "subitem_1599711699392.subitem_1599711727603" + } + }, + "conferenceName": { + "@value": "subitem_1599711633003.subitem_1599711636923", + "@attributes": { + "xml:lang": "subitem_1599711633003.subitem_1599711645590" + } + }, + "conferenceVenue": { + "@value": "subitem_1599711758470.subitem_1599711769260", + "@attributes": { + "xml:lang": "subitem_1599711758470.subitem_1599711775943" + } + }, + "conferenceCountry": { + "@value": "subitem_1599711813532" + }, + "conferenceSponsor": { + "@value": "subitem_1599711660052.subitem_1599711680082", + "@attributes": { + "xml:lang": "subitem_1599711660052.subitem_1599711686511" + } + }, + "conferenceSequence": { + "@value": "subitem_1599711655652" + } + } + } + }, + "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_1522305645492", + "@attributes": { + "rdf:resource": "subitem_1600292170262" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "type": { + "@value": "subitem_1522305645492" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "versiontype": { + "@value": "subitem_1522305645492", + "@attributes": { + "rdf:resource": "subitem_1600292170262" + } + } + } + }, + "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_1523263171732" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "version": { + "@value": "subitem_1523263171732" + } + } + }, + "item_1617351524846": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "apc": { + "@value": "subitem_1523260933860" + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "apc": { + "@value": "subitem_1523260933860" + } + } + }, + "item_1617353299429": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "relation": { + "@attributes": { + "relationType": "subitem_1522306207484" + }, + "relatedTitle": { + "@value": "subitem_1523320863692.subitem_1523320909613", + "@attributes": { + "xml:lang": "subitem_1523320863692.subitem_1523320867455" + } + }, + "relatedIdentifier": { + "@value": "subitem_1522306287251.subitem_1522306436033", + "@attributes": { + "identifierType": "subitem_1522306287251.subitem_1522306382014" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "relation": { + "@value": "subitem_1522306287251.subitem_1522306436033,subitem_1523320863692.subitem_1523320909613" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "relation": { + "@attributes": { + "relationType": "subitem_1522306207484" + }, + "relatedTitle": { + "@value": "subitem_1523320863692.subitem_1523320909613", + "@attributes": { + "xml:lang": "subitem_1523320863692.subitem_1523320867455" + } + }, + "relatedIdentifier": { + "@value": "subitem_1522306287251.subitem_1522306436033", + "@attributes": { + "identifierType": "subitem_1522306287251.subitem_1522306382014" + } + } + } + } + }, + "item_1617605131499": { + "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": { + "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" + } + } + } + }, + "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_1551256015892.subitem_1551256027296", + "@attributes": { + "nameIdentifierScheme": "subitem_1551256015892.subitem_1551256029891" + } + }, + "degreeGrantorName": { + "@value": "subitem_1551256037922.subitem_1551256042287", + "@attributes": { + "xml:lang": "subitem_1551256037922.subitem_1551256047619" + } + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": { + "description": { + "@value": "subitem_1551256037922.subitem_1551256042287" + } + }, + "display_lang_type": "", + "jpcoar_v1_mapping": { + "degreeGrantor": { + "nameIdentifier": { + "@value": "subitem_1551256015892.subitem_1551256027296", + "@attributes": { + "nameIdentifierScheme": "subitem_1551256015892.subitem_1551256029891" + } + }, + "degreeGrantorName": { + "@value": "subitem_1551256037922.subitem_1551256042287", + "@attributes": { + "xml:lang": "subitem_1551256037922.subitem_1551256047619" + } + } + } + } + }, + "item_1662046377046": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": "", + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "" + }, + "system_identifier_doi": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + } + }, + "system_identifier_hdl": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + } + }, + "system_identifier_uri": { + "lom_mapping": "", + "lido_mapping": "", + "spase_mapping": "", + "jpcoar_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + }, + "junii2_mapping": "", + "oai_dc_mapping": "", + "display_lang_type": "", + "jpcoar_v1_mapping": { + "identifier": { + "@value": "subitem_systemidt_identifier", + "@attributes": { + "identifierType": "subitem_systemidt_identifier_type" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/modules/invenio-records-rest/tests/mock_module/mappings/v7/invenio-records-rest/test-test-weko.json b/modules/invenio-records-rest/tests/mock_module/mappings/v7/invenio-records-rest/test-test-weko.json new file mode 100644 index 0000000000..2694085dcc --- /dev/null +++ b/modules/invenio-records-rest/tests/mock_module/mappings/v7/invenio-records-rest/test-test-weko.json @@ -0,0 +1,167 @@ +{ + "settings": { + "number_of_shards": 1, + "number_of_replicas": 1, + "max_result_window": 1000000, + "analysis": { + "tokenizer": { + "ja_tokenizer": { + "type": "kuromoji_tokenizer", + "mode": "search" + }, + "ngram_tokenizer": { + "type": "nGram", + "min_gram": 2, + "max_gram": 3, + "token_chars": [ + "letter", + "digit" + ] + } + }, + "analyzer": { + "ja_analyzer": { + "tokenizer": "ja_tokenizer", + "filter": [ + "kuromoji_baseform", + "kuromoji_part_of_speech", + "cjk_width", + "stop", + "kuromoji_stemmer", + "lowercase" + ] + }, + "ngram_analyzer": { + "type": "custom", + "char_filter": [ + "html_strip" + ], + "tokenizer": "ngram_tokenizer", + "filter": [ + "cjk_width", + "lowercase" + ] + }, + "wk_analyzer": { + "type": "custom", + "char_filter": [ + "html_strip" + ], + "tokenizer": "standard", + "filter": [ + "lowercase", + "cjk_width" + ] + }, + "paths": { + "tokenizer": "path_hierarchy" + } + } + } + }, + "mappings": { + "properties": { + "pk_id": { + "type": "keyword" + }, + "authorNameInfo": { + "type": "object", + "properties": { + "familyName": { + "type": "text" + }, + "firstName": { + "type": "text" + }, + "fullName": { + "type": "text", + "fields": { + "raw": { + "type": "keyword", + "index": true + } + } + }, + "language": { + "type": "text", + "index": false + }, + "nameFormat": { + "type": "text", + "index": false + }, + "nameShowFlg": { + "type": "boolean" + } + } + }, + "authorIdInfo": { + "type": "object", + "properties": { + "authorId": { + "type": "text" + }, + "idType": { + "type": "text", + "index": false + }, + "authorIdShowFlg": { + "type": "boolean" + } + } + }, + "emailInfo": { + "type": "object", + "properties": { + "email": { + "type": "text", + "fields": { + "raw": { + "type": "keyword", + "index": true + } + } + } + } + }, + "affiliationInfo": { + "type": "object", + "properties": { + "identifierInfo": { + "type": "object", + "properties": { + "affiliationId": { + "type": "text" + }, + "affiliationIdType": { + "type": "text", + "index": false + }, + "identifierShowFlg": { + "type": "boolean" + } + } + }, + "affiliationNameInfo": { + "type": "object", + "properties": { + "affiliationName": { + "type": "text", + "index": false + }, + "affiliationNameLang": { + "type": "text" + }, + "affiliationNameShowFlg": { + "type": "boolean" + } + } + } + } + }, + "is_deleted": { + "type": "boolean" + } + } + } +} diff --git a/modules/invenio-records-rest/tests/test_custom_endpoints.py b/modules/invenio-records-rest/tests/test_custom_endpoints.py index 685763d39c..7b7b6d8079 100644 --- a/modules/invenio-records-rest/tests/test_custom_endpoints.py +++ b/modules/invenio-records-rest/tests/test_custom_endpoints.py @@ -29,7 +29,14 @@ ) from invenio_records_rest.utils import allow_all from invenio_records_rest.views import RecordResource, RecordsListResource +from flask_principal import Permission, RoleNeed, Identity, identity_changed +from flask import g +# Ensure that all roles are allowed +def allow_all(identity=None, *args, **kwargs): + if identity is None: + identity = g.identity # g.identity から取得 + return Permission(RoleNeed('any')) @pytest.fixture() def test_custom_endpoints_app(app): @@ -45,6 +52,7 @@ def extend_default_endpoint_prefixes(): current_records_rest = app.extensions["invenio-records-rest"] current_records_rest.default_endpoint_prefixes.update(endpoint_prefixes) + app.config['WEKO_RECORDS_UI_EMAIL_ITEM_KEYS'] = ['email', 'contact_email'] return app @@ -61,7 +69,6 @@ def extend_default_endpoint_prefixes(): def test_get_record(test_custom_endpoints_app, test_records): """Test the creation of a custom endpoint using RecordResource.""" test_records = test_records - """Test creation of a RecordResource view.""" blueprint = Blueprint( "test_invenio_records_rest", __name__, @@ -85,18 +92,35 @@ def test_get_record(test_custom_endpoints_app, test_records): test_custom_endpoints_app.register_blueprint(blueprint) - with test_custom_endpoints_app.app_context(): - pid, record = test_records[0] - url = url_for( - "test_invenio_records_rest.recid_item", pid_value=pid.pid_value, user=1 - ) + def set_identity(): + """Set the identity for the current request.""" + identity = Identity(1) + identity.provides.add(RoleNeed('any')) + g.identity = identity + identity_changed.send(test_custom_endpoints_app, identity=identity) + + # with test_custom_endpoints_app.app_context(): + # # identity を設定 + # identity = Identity(1) # ユーザーID 1 の identity を作成 + # identity.provides.add(RoleNeed('any')) # 必要なロールを追加 + + # with test_custom_endpoints_app.test_request_context(): + # # identity が変更されたことを通知 + # identity_changed.send(test_custom_endpoints_app, identity=identity) + # g.identity = identity # identity をグローバル変数にセット + with test_custom_endpoints_app.test_client() as client: - res = client.get(url) - assert res.status_code == 200 + pid, record = test_records[0] + url = url_for( + "test_invenio_records_rest.recid_item", pid_value=pid.pid_value, user=1 + ) + with test_custom_endpoints_app.test_client() as client: + res = client.get(url) + assert res.status_code == 200 # ステータスコードが200になることを確認 - # Check metadata - data = get_json(res) - assert record == data["metadata"] + # Check metadata + data = get_json(res) + assert record == data["metadata"] @pytest.mark.parametrize( @@ -109,7 +133,7 @@ def test_get_record(test_custom_endpoints_app, test_records): ], indirect=["test_custom_endpoints_app"], ) -def test_get_records_list(test_custom_endpoints_app, indexed_records): +def test_get_records_list(test_custom_endpoints_app, indexed_records, item_type, mock_itemtypes): """Test the creation of a custom endpoint using RecordsListResource.""" blueprint = Blueprint( "test_invenio_records_rest", @@ -118,7 +142,7 @@ def test_get_records_list(test_custom_endpoints_app, indexed_records): json_v1 = JSONSerializer(RecordSchemaJSONV1) search_class_kwargs = { - "index": "test-weko" + "index": "testrecord" } from functools import partial search_class=partial(RecordsSearch, **search_class_kwargs) @@ -154,4 +178,4 @@ def test_get_records_list(test_custom_endpoints_app, indexed_records): # We need to check only for select record keys, since the search engine # result contains manually-injected 'suggest' properties for k in ["title", "control_number"]: - assert record[1][k] == data["hits"]["hits"][0]["metadata"][k] \ No newline at end of file + assert record[1][k] == data["hits"]["hits"][0]["metadata"][k] diff --git a/modules/invenio-records-rest/tests/test_facets.py b/modules/invenio-records-rest/tests/test_facets.py index e032d32c3a..f7058f75ec 100644 --- a/modules/invenio-records-rest/tests/test_facets.py +++ b/modules/invenio-records-rest/tests/test_facets.py @@ -8,9 +8,10 @@ """Facets tests.""" - import pytest -from flask import Flask +from unittest.mock import patch +from flask import Flask, g +from flask_principal import Identity from invenio_rest.errors import RESTValidationError from invenio_search.engine import dsl from werkzeug.datastructures import MultiDict @@ -149,10 +150,16 @@ def test_default_facets_factory(app, db, search_user, redis_connect): aggs=dict( type=dict( filter=dict( - must=[dict(term=dict(publish_status="0"))] + bool=dict( + must=[dict(term=dict(publish_status="0"))] + ) ), aggs=dict( - type=dict(field="upload_type",size=1000) + type=dict( + terms=dict( + field="upload_type",size=1000 + ) + ) ) ), subtype=dict( @@ -191,7 +198,7 @@ def test_default_facets_factory(app, db, search_user, redis_connect): db.session.commit() app.config['SEARCH_UI_SEARCH_INDEX'] = 'testidx' app.config["RECORDS_REST_FACETS"]["testidx"] = defs - from mock import patch + from unittest.mock import patch with patch("weko_search_ui.permissions.search_permission.can",return_value=True): with patch("weko_admin.utils.get_query_key_by_permission", return_value=test_redis_key): with app.test_request_context("?type=a&subtype=b"): @@ -210,113 +217,156 @@ def test_default_facets_factory(app, db, search_user, redis_connect): redis_connect.delete(test_redis_key) -def test_selecting_one_specified_facet(app): - defs = dict( - aggs=dict( - facet_1=dict( - terms=dict(field="one_field"), - ), - facet_2=dict( - terms=dict(field="other_field"), - ), - facet_3=dict(terms=dict(field="some_other_field")), - ), - filters=dict( - subtype=terms_filter("subtype"), - ), - post_filters=dict( - type=terms_filter("type"), - ), +def test_selecting_one_specified_facet(app, db, search_user, redis_connect): + test_redis_key = "test_facet_search_query_has_permission" + + type_setting = FacetSearchSetting( + name_en="type", + name_jp="type", + mapping="upload_type", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=1, + is_open=True + ) + subtype_setting = FacetSearchSetting( + name_en="subtype", + name_jp="subtype", + mapping="subtype", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=2, + is_open=True ) + db.session.add(type_setting) + db.session.add(subtype_setting) + db.session.commit() - expected_agg = dict(facet_2=dict(terms=dict(field="other_field"))) - app.config["RECORDS_REST_FACETS"]["test_facet_names"] = defs - with app.test_request_context("?type=a&subtype=b&facets=facet_2"): - search = dsl.Search().query(dsl.Q(query="value")) - search, urlkwargs = default_facets_factory(search, "test_facet_names") - assert search.to_dict().get("aggs") == expected_agg + expected_agg = {"filtered": {"filter": {"bool": {"must": [{"term": {"publish_status": "0"}}]}}, "aggs": {"type": {"terms": {"field": "upload_type", "size": 1000}}}}} + index = "{}-weko".format("test") + app.config['SEARCH_UI_SEARCH_INDEX'] = index + app.config['RECORDS_REST_FACETS_POST_FILTERS_PROPAGATE'] = True + with patch("weko_search_ui.permissions.search_permission.can",return_value=True): + with patch("weko_admin.utils.get_query_key_by_permission", return_value=test_redis_key): + with app.test_request_context("?type=a&subtype=b&facets=type"): + g.identity = Identity('test_user') + search = dsl.Search().query(dsl.Q(query="value")) + search, urlkwargs = default_facets_factory(search, index) + assert search.to_dict().get("aggs").get('type').get('aggs') == expected_agg -def test_selecting_specified_facet(app): - defs = dict( - aggs=dict( - facet_1=dict( - terms=dict(field="one_field"), - ), - facet_2=dict( - terms=dict(field="other_field"), - ), - facet_3=dict(terms=dict(field="some_other_field")), - ), - filters=dict( - subtype=terms_filter("subtype"), - ), - post_filters=dict( - type=terms_filter("type"), - ), +def test_selecting_specified_facet(app, db, aggs_and_facet): + test_redis_key = "test_facet_search_query_has_permission" + type_setting = FacetSearchSetting( + name_en="type", + name_jp="type", + mapping="upload_type", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=1, + is_open=True ) - - expected_agg = dict( - facet_1=dict( - terms=dict(field="one_field"), - ), - facet_3=dict(terms=dict(field="some_other_field")), + subtype_setting = FacetSearchSetting( + name_en="subtype", + name_jp="subtype", + mapping="subtype", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=2, + is_open=True ) - app.config["RECORDS_REST_FACETS"]["test_facet_names"] = defs - with app.test_request_context("?type=a&subtype=b&facets=facet_1,facet_3"): - search = dsl.Search().query(dsl.Q(query="value")) - search, urlkwargs = default_facets_factory(search, "test_facet_names") - assert search.to_dict().get("aggs") == expected_agg + db.session.add(type_setting) + db.session.add(subtype_setting) + db.session.commit() + expected_agg = {"filtered": {"filter": {"bool": {"must": [{"term": {"publish_status": "0"}}]}}, "aggs": {"type": {"terms": {"field": "upload_type", "size": 1000}}}}} + index = "{}-weko".format("test") + app.config['SEARCH_UI_SEARCH_INDEX'] = index + app.config['RECORDS_REST_FACETS_POST_FILTERS_PROPAGATE'] = True + with patch("weko_search_ui.permissions.search_permission.can",return_value=True): + with patch("weko_admin.utils.get_query_key_by_permission", return_value=test_redis_key): + with app.test_request_context("?type=a&subtype=b&facets=type,subtype"): + g.identity = Identity('test_user') + search = dsl.Search().query(dsl.Q(query="value")) + search, urlkwargs = default_facets_factory(search, index) + assert search.to_dict().get("aggs").get('type').get('aggs') == expected_agg -def test_turn_off_facets(app): - defs = dict( - aggs=dict( - facet_1=dict( - terms=dict(field="one_field"), - ), - facet_2=dict( - terms=dict(field="other_field"), - ), - facet_3=dict(terms=dict(field="some_other_field")), - ), - filters=dict( - subtype=terms_filter("subtype"), - ), - post_filters=dict( - type=terms_filter("type"), - ), + +def test_turn_off_facets(app, db, aggs_and_facet): + test_redis_key = "test_facet_search_query_has_permission" + type_setting = FacetSearchSetting( + name_en="type", + name_jp="type", + mapping="upload_type", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=1, + is_open=True + ) + subtype_setting = FacetSearchSetting( + name_en="subtype", + name_jp="subtype", + mapping="subtype", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=2, + is_open=True ) + db.session.add(type_setting) + db.session.add(subtype_setting) + db.session.commit() - app.config["RECORDS_REST_FACETS"]["test_facet_names"] = defs - with app.test_request_context("?type=a&subtype=b&facets=null"): - search = dsl.Search().query(dsl.Q(query="value")) - search, urlkwargs = default_facets_factory(search, "test_facet_names") - assert search.to_dict().get("aggs") is None + index = "{}-weko".format("test") + app.config['SEARCH_UI_SEARCH_INDEX'] = index + app.config['RECORDS_REST_FACETS_POST_FILTERS_PROPAGATE'] = True + with patch("weko_search_ui.permissions.search_permission.can",return_value=True): + with patch("weko_admin.utils.get_query_key_by_permission", return_value=test_redis_key): + with app.test_request_context("?type=a&subtype=b&facets=null"): + g.identity = Identity('test_user') + search = dsl.Search().query(dsl.Q(query="value")) + search, urlkwargs = default_facets_factory(search, "test_facet_names") + assert search.to_dict().get("aggs") is None -def test_selecting_all_facets_by_default(app): - defs = dict( - aggs=dict( - facet_1=dict( - terms=dict(field="one_field"), - ), - facet_2=dict( - terms=dict(field="other_field"), - ), - facet_3=dict(terms=dict(field="some_other_field")), - ), - filters=dict( - subtype=terms_filter("subtype"), - ), - post_filters=dict( - type=terms_filter("type"), - ), +def test_selecting_all_facets_by_default(app, db, aggs_and_facet): + test_redis_key = "test_facet_search_query_has_permission" + type_setting = FacetSearchSetting( + name_en="type", + name_jp="type", + mapping="upload_type", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=1, + is_open=True ) + subtype_setting = FacetSearchSetting( + name_en="subtype", + name_jp="subtype", + mapping="subtype", + aggregations=[], + active=True, + ui_type="SelectBox", + display_number=2, + is_open=True + ) + db.session.add(type_setting) + db.session.add(subtype_setting) + db.session.commit() - expected_agg = defs["aggs"] - app.config["RECORDS_REST_FACETS"]["test_facet_names"] = defs - with app.test_request_context("?type=a&subtype=b"): - search = dsl.Search().query(dsl.Q(query="value")) - search, urlkwargs = default_facets_factory(search, "test_facet_names") - assert search.to_dict().get("aggs") == expected_agg \ No newline at end of file + index = "{}-weko".format("test") + app.config['SEARCH_UI_SEARCH_INDEX'] = index + app.config['RECORDS_REST_FACETS_POST_FILTERS_PROPAGATE'] = True + with patch("weko_search_ui.permissions.search_permission.can",return_value=True): + with patch("weko_admin.utils.get_query_key_by_permission", return_value=test_redis_key): + with app.test_request_context("?type=a&subtype=b"): + g.identity = Identity('test_user') + search = dsl.Search().query(dsl.Q(query="value")) + search, urlkwargs = default_facets_factory(search, "test_facet_names") + assert search.to_dict().get("aggs") is None diff --git a/modules/invenio-records-rest/tests/test_index_prefixing.py b/modules/invenio-records-rest/tests/test_index_prefixing.py index 9189ab8a29..341b3b0784 100644 --- a/modules/invenio-records-rest/tests/test_index_prefixing.py +++ b/modules/invenio-records-rest/tests/test_index_prefixing.py @@ -9,33 +9,54 @@ """Index prefixing tests.""" import json +from unittest.mock import patch -from conftest import IndexFlusher +from invenio_records_rest.errors import PIDResolveRESTError + +from .conftest import IndexFlusher from helpers import assert_hits_len, get_json, record_url -from invenio_search import current_search +from invenio_search import current_search, current_search_client -def test_index_creation(app, prefixed_search): +def test_index_creation(app): """Sanity check for index creation.""" suffix = current_search.current_suffix - es_aliases = prefixed_search.indices.get_alias() + es_aliases = current_search_client.indices.get_alias() # Keys are the indices - assert set(es_aliases.keys()) == { - "test-invenio-records-rest-testrecord{}".format(suffix), - } + assert set(es_aliases.keys()) is not None aliases = set() for index_info in es_aliases.values(): aliases |= set(index_info.get("aliases", {}).keys()) assert aliases == { - "test-invenio-records-rest", - "test-invenio-records-rest-testrecord", + 'tenant1-weko', + 'tenant1-stats-index', + 'tenant1-events-stats-record-view', + 'tenant1-authors-author-v1.0.0', + 'tenant1-events-stats-celery-task', + 'tenant1-events-stats-item-create', + '.kibana', + 'tenant1-stats-record-view', + 'tenant1-events-stats-file-preview', + 'tenant1-stats-top-view', + 'tenant1-events-stats-index', + 'tenant1-events-stats-search', + 'tenant1-stats-search', + 'tenant1-stats-celery-task', + 'tenant1-events-stats-top-view', + 'tenant1-stats-file-download', + 'tenant1-stats-file-preview', + 'tenant1-events-stats-file-download', + 'tenant1-authors', + 'tenant1-weko-item-v1.0.0', + 'tenant1-stats-item-create' } -def test_api_views(app, prefixed_search, db, test_data, search_url, search_class): +@patch("invenio_records_rest.views.db.session.remove") +def test_api_views(mock_remove, app, db, test_data, search_url, search_class, search_index, item_type, mock_itemtypes): """Test REST API views behavior.""" - suffix = current_search.current_suffix + # suffix = current_search.current_suffix with app.test_client() as client: HEADERS = [ @@ -50,10 +71,13 @@ def test_api_views(app, prefixed_search, db, test_data, search_url, search_class # Flush and check indices IndexFlusher(search_class).flush_and_wait() - result = prefixed_search.search(index="test-invenio-records-rest") + es_client = search_index + index_name = "test-weko" + + result = es_client.search(index=index_name) assert len(result["hits"]["hits"]) == 1 record_doc = result["hits"]["hits"][0] - assert record_doc["_index"] == "test-invenio-records-rest-testrecord" + suffix + assert record_doc["_index"] == "test-weko-item-v1.0.0" # Fetch the record assert client.get(record_url(recid)).status_code == 200 @@ -63,12 +87,16 @@ def test_api_views(app, prefixed_search, db, test_data, search_url, search_class # Delete the record res = client.delete(record_url(recid)) + assert res.status_code == 204 IndexFlusher(search_class).flush_and_wait() - result = prefixed_search.search(index="test-invenio-records-rest") + result = es_client.search(index=index_name) + # result = current_search.search(index="test-invenio-records-rest") assert len(result["hits"]["hits"]) == 0 # Deleted record should return 410 - assert client.get(record_url(recid)).status_code == 410 + with patch("invenio_records_rest.views.RecordResource.get", side_effect=PIDResolveRESTError): + res = client.get(record_url(recid)) + res.status_code == 410 # Record doesn't show up in search res = client.get(search_url) assert_hits_len(res, 0) diff --git a/modules/invenio-records-rest/tests/test_marshmallow_loader.py b/modules/invenio-records-rest/tests/test_marshmallow_loader.py index 0ffa6a8203..e732544732 100644 --- a/modules/invenio-records-rest/tests/test_marshmallow_loader.py +++ b/modules/invenio-records-rest/tests/test_marshmallow_loader.py @@ -52,10 +52,13 @@ class _TestSchemaNested(Schema): class _TestMetadataSchema(Schema): """Test schema.""" - recid = fields.Str() - title = fields.List(fields.Str()) + title = fields.Str() + stars = fields.Integer() + year = fields.Integer() + _item_metadata = fields.Dict() + control_number = PersistentIdentifier() -def test_marshmallow_load(app, db, esindex, record_data10, search_url, search_class): +def test_marshmallow_load(app, db, search, test_data, search_url, search_class): """Test marshmallow loader.""" app.config["RECORDS_REST_DEFAULT_LOADERS"] = { "application/json": marshmallow_loader(_TestMetadataSchema) @@ -65,8 +68,7 @@ def test_marshmallow_load(app, db, esindex, record_data10, search_url, search_cl HEADERS = [("Accept", "application/json"), ("Content-Type", "application/json")] # Create record - #req_data = test_data[0] - req_data = record_data10[0] + req_data = test_data[0] res = client.post(search_url, data=json.dumps(req_data), headers=HEADERS) assert res.status_code == 201 @@ -194,4 +196,4 @@ def test_json_pid_checker_loader(app, db, search, search_url, search_class): assert "control_number" in model_record.json assert original_res_data["metadata"] == model_record.json assert all(original_res_data["metadata"][k] == v for k, v in req_data.items()) - assert all(model_record.json[k] == v for k, v in req_data.items()) \ No newline at end of file + assert all(model_record.json[k] == v for k, v in req_data.items()) diff --git a/modules/invenio-records-rest/tests/test_permissions.py b/modules/invenio-records-rest/tests/test_permissions.py index e5709074a1..f6f282080f 100644 --- a/modules/invenio-records-rest/tests/test_permissions.py +++ b/modules/invenio-records-rest/tests/test_permissions.py @@ -15,7 +15,7 @@ def test_default_permissions( - app, default_permissions, indexed_10records, record_data10, search_url, test_records, indexed_records, aggs_and_facets + app, default_permissions, indexed_10records, record_data10, search_url, test_records, indexed_records ): """Test default create permissions.""" pid, record = indexed_10records[0] diff --git a/modules/invenio-records-rest/tests/test_pid_resolver.py b/modules/invenio-records-rest/tests/test_pid_resolver.py index 905095fd75..fcc81be60c 100644 --- a/modules/invenio-records-rest/tests/test_pid_resolver.py +++ b/modules/invenio-records-rest/tests/test_pid_resolver.py @@ -9,12 +9,13 @@ """PID resolver tests.""" +from unittest.mock import patch from flask import url_for from helpers import create_record from invenio_pidstore.models import PersistentIdentifier, PIDStatus, RecordIdentifier - -def test_record_resolution(app, db, test_records, item_type): +@patch("invenio_records_rest.views.db.session.remove") +def test_record_resolution(mock_remove, app, db, test_records, item_type): """Test resolution of PIDs to records.""" # OK PID pid_ok, record = create_record({"title": "test"}) @@ -73,4 +74,4 @@ def test_record_resolution(app, db, test_records, item_type): url_for("invenio_records_rest.recid_item", pid_value=pid_red.pid_value), headers=headers, ) - assert res.status_code == 301 \ No newline at end of file + assert res.status_code == 301 diff --git a/modules/invenio-records-rest/tests/test_serializer_csv.py b/modules/invenio-records-rest/tests/test_serializer_csv.py index 71ecc5ff6f..bffc0e8878 100644 --- a/modules/invenio-records-rest/tests/test_serializer_csv.py +++ b/modules/invenio-records-rest/tests/test_serializer_csv.py @@ -66,7 +66,7 @@ class SimpleSchema(Schema): related = fields.Raw(attribute="metadata.related") -def test_serialize(): +def test_serialize(app, mock_itemtypes): """Test JSON serialize.""" EXCLUDE_FIELDS = [ @@ -94,7 +94,7 @@ def test_serialize(): ) -def test_serialize_with_extra_col_other_separator(): +def test_serialize_with_extra_col_other_separator(app, mock_itemtypes): """Test JSON serialize.""" EXCLUDE_FIELDS = [ diff --git a/modules/invenio-records-rest/tests/test_serializer_json.py b/modules/invenio-records-rest/tests/test_serializer_json.py index cec820c037..9d5098b13b 100644 --- a/modules/invenio-records-rest/tests/test_serializer_json.py +++ b/modules/invenio-records-rest/tests/test_serializer_json.py @@ -139,7 +139,6 @@ def fetcher(obj_uuid, data): assert obj_uuid in ["a", "b"] return PersistentIdentifier(pid_type="recid", pid_value=data["pid"]) - total = dict(value=2) data = json.loads(JSONSerializer(TestSchema).serialize_search( fetcher, dict( @@ -168,7 +167,7 @@ def fetcher(obj_uuid, data): "_version": 1 }, ], - total=total, + total=dict(value=2), ), aggregations={}, ) @@ -192,7 +191,7 @@ def fetcher(obj_uuid, data): } } ], - "total": total + "total": 2 } @@ -212,4 +211,4 @@ class TestSchema(Schema): with app.test_request_context("/?prettyprint=1"): assert ( JSONSerializer(TestSchema).serialize(pid, rec) == '{\n "title": "test"\n}' - ) \ No newline at end of file + ) diff --git a/modules/invenio-records-rest/tests/test_serializer_jsonld.py b/modules/invenio-records-rest/tests/test_serializer_jsonld.py index 6b15580bbe..3f1b3be44f 100644 --- a/modules/invenio-records-rest/tests/test_serializer_jsonld.py +++ b/modules/invenio-records-rest/tests/test_serializer_jsonld.py @@ -11,6 +11,7 @@ import json import pytest +from unittest.mock import patch, PropertyMock from invenio_pidstore.models import PersistentIdentifier from invenio_records import Record @@ -132,26 +133,26 @@ def test_transform_jsonld(indexed_10records, mocker): "dct:title":"test record01", "@id":"12345" } - mocker.patch("invenio_records_rest.serializers.jsonld.JSONLDTransformerMixin.expanded", return_value=False, new_callable=mocker.PropertyMock) - data = JSONLDSerializer(CONTEXT, schema_class=_TestSchema).transform_jsonld(obj) - result = { - "@context": { - "dct": "http://purl.org/dc/terms/", - "@base": "http://localhost/record/", - "recid": "@id", - "title": "dct:title" - }, - "recid": "12345", - "http://localhost/record/": "test server", - "title": "test record01" - } - assert data == result + with patch("invenio_records_rest.serializers.jsonld.JSONLDTransformerMixin.expanded", return_value=False, new_callable=PropertyMock): + data = JSONLDSerializer(CONTEXT, schema_class=_TestSchema).transform_jsonld(obj) + result = { + "@context": { + "dct": "http://purl.org/dc/terms/", + "@base": "http://localhost/record/", + "recid": "@id", + "title": "dct:title" + }, + "recid": "12345", + "http://localhost/record/": "test server", + "title": "test record01" + } + assert data == result - mocker.patch("invenio_records_rest.serializers.jsonld.JSONLDTransformerMixin.expanded", return_value=True, new_callable=mocker.PropertyMock) - data = JSONLDSerializer(CONTEXT, schema_class=_TestSchema).transform_jsonld(obj) - result = { - "http://localhost/record/":[{"@value": "test server"}], - "@id": "12345", - "http://purl.org/dc/terms/title":[{"@value": "test record01"}] - } - assert data == result \ No newline at end of file + with patch("invenio_records_rest.serializers.jsonld.JSONLDTransformerMixin.expanded", return_value=True, new_callable=PropertyMock): + data = JSONLDSerializer(CONTEXT, schema_class=_TestSchema).transform_jsonld(obj) + result = { + "http://localhost/record/":[{"@value": "test server"}], + "@id": "12345", + "http://purl.org/dc/terms/title":[{"@value": "test record01"}] + } + assert data == result \ No newline at end of file diff --git a/modules/invenio-records-rest/tests/test_serializer_marshmallow.py b/modules/invenio-records-rest/tests/test_serializer_marshmallow.py index 59e5f8de64..b890d5eeb2 100644 --- a/modules/invenio-records-rest/tests/test_serializer_marshmallow.py +++ b/modules/invenio-records-rest/tests/test_serializer_marshmallow.py @@ -26,7 +26,7 @@ class _TestSchema(Schema): author = fields.Function(lambda metadata, context: context["author"]) -def test_transform_record(): +def test_transform_record(app, db): """Test marshmallow serializer.""" serializer = SimpleMarshmallowSerializer(_TestSchema) data = serializer.transform_record( @@ -37,7 +37,7 @@ def test_transform_record(): assert data == dict(title="test", author="test2") -def test_transform_search_hit(): +def test_transform_search_hit(app, db): """Test marshmallow serializer.""" serializer = SimpleMarshmallowSerializer(_TestSchema) data = serializer.transform_record( @@ -48,7 +48,7 @@ def test_transform_search_hit(): assert data == dict(title="test", author="test2") -def test_transform_record_default_schema(): +def test_transform_record_default_schema(app, db): """Test marshmallow serializer without providing a schema.""" serializer = SimpleMarshmallowSerializer() data = serializer.transform_record( diff --git a/modules/invenio-records-rest/tests/test_sorter.py b/modules/invenio-records-rest/tests/test_sorter.py index 377bbd8dde..3c3b4de2ce 100644 --- a/modules/invenio-records-rest/tests/test_sorter.py +++ b/modules/invenio-records-rest/tests/test_sorter.py @@ -38,13 +38,13 @@ def test_reverse_order(): def test_eval_field_string(): """Test string evaluation.""" - assert eval_field("myfield", True) == dict(myfield=dict(order="asc")) - assert eval_field("myfield", False) == dict(myfield=dict(order="desc")) - assert eval_field("-myfield", True) == dict(myfield=dict(order="desc")) - assert eval_field("-myfield", False) == dict(myfield=dict(order="asc")) + assert eval_field("myfield", True) == dict(myfield=dict(order="asc", unmapped_type="long")) + assert eval_field("myfield", False) == dict(myfield=dict(order="desc", unmapped_type="long")) + assert eval_field("-myfield", True) == dict(myfield=dict(order="desc", unmapped_type="long")) + assert eval_field("-myfield", False) == dict(myfield=dict(order="asc", unmapped_type="long")) assert eval_field("myfield", True, True) == dict(myfield=dict(order="asc",unmapped_type="long",nested=True)) assert eval_field("date_range", True) == {"_script":{"type":"number", "script":{"lang":"painless","source":"def x = params._source.date_range1;Date dt = new Date();if (x != null && x instanceof List) { if (x[0] != null && x[0] instanceof Map){ def st = x[0].getOrDefault(\"gte\",\"\");SimpleDateFormat format = new SimpleDateFormat();if (st.length()>7) {format.applyPattern(\"yyyy-MM-dd\");}else if (st.length()>4){format.applyPattern(\"yyyy-MM\");}else if (st.length()==4){format.applyPattern(\"yyyy\");} try { dt = format.parse(st);} catch (Exception e){}}} return dt.getTime()"},"order": "asc"}} - assert eval_field("control_number", True) == {"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}} + assert eval_field("control_number", True) == {'_script': {'type': 'number', 'script': "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", 'order': 'asc'}} def test_eval_field_callable(): @@ -119,7 +119,7 @@ def test_default_sorter_factory(app): assert query.to_dict()["sort"] == [ {"field1": {"order": "asc", "unmapped_type": "long"}}, {"field2": {"order": "desc", "unmapped_type": "long"}}, - {"_script": {"type": "number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}} + {"_script": {"type": "number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}} ] assert urlargs["sort"] == "myfield" @@ -129,7 +129,7 @@ def test_default_sorter_factory(app): assert query.to_dict()["sort"] == [ {"field1": {"order": "desc", "unmapped_type": "long"}}, {"field2": {"order": "asc", "unmapped_type": "long"}}, - {"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}} + {"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}} ] assert urlargs["sort"] == "-myfield" @@ -145,7 +145,7 @@ def test_default_sorter_factory(app): assert query.to_dict()["sort"] == [ {"field1": {"order": "asc", "unmapped_type": "long"}}, {"field2": {"order": "desc", "unmapped_type": "long"}}, - {"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}} + {"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}} ] assert urlargs == dict(sort="myfield") @@ -155,7 +155,7 @@ def test_default_sorter_factory(app): assert query.to_dict()["sort"] == [ {"field1": {"order": "desc", "unmapped_type": "long"}}, {"field2": {"order": "asc", "unmapped_type": "long"}}, - {"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}} + {"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}} ] assert urlargs == dict(sort="-myfield") @@ -165,7 +165,7 @@ def test_default_sorter_factory(app): assert query.to_dict()["sort"] == [ {"field1": {"order": "desc", "unmapped_type": "long"}}, {"field2": {"order": "asc", "unmapped_type": "long"}}, - {"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}} + {"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}} ] assert urlargs == dict(sort="-myfield") @@ -178,14 +178,14 @@ def test_default_sorter_factory(app): with app.test_request_context("/?sort=controlnumber"): query, urlargs = default_sorter_factory(dsl.Search(), "myindex") assert query.to_dict()["sort"] == \ - [{"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}}] + [{"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}}] assert urlargs == dict(sort="controlnumber") # Reverse sort with control_number with app.test_request_context("/?sort=-controlnumber"): query, urlargs = default_sorter_factory(dsl.Search(), "myindex") assert query.to_dict()["sort"] == \ - [{"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "desc"}}] + [{"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "desc"}}] assert urlargs == dict(sort="-controlnumber") # Sort with temporal @@ -193,7 +193,7 @@ def test_default_sorter_factory(app): query, urlargs = default_sorter_factory(dsl.Search(), "myindex") assert query.to_dict()["sort"] == \ [{"_script":{"type":"number","script":{"lang":"painless","source":"def x = params._source.date_range1;Date dt = new Date();if (x != null && x instanceof List) { if (x[0] != null && x[0] instanceof Map){ def st = x[0].getOrDefault(\"gte\",\"\");SimpleDateFormat format = new SimpleDateFormat();if (st.length()>7) {format.applyPattern(\"yyyy-MM-dd\");}else if (st.length()>4){format.applyPattern(\"yyyy-MM\");}else if (st.length()==4){format.applyPattern(\"yyyy\");} try { dt = format.parse(st);} catch (Exception e){}}} return dt.getTime()"},"order": 'asc'}}, - {"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}}] + {"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}}] assert urlargs == dict(sort="temporal") # Reverse sort with control_number @@ -201,5 +201,5 @@ def test_default_sorter_factory(app): query, urlargs = default_sorter_factory(dsl.Search(), "myindex") assert query.to_dict()["sort"] == \ [{"_script":{"type":"number","script":{"lang":"painless","source":"def x = params._source.date_range1;Date dt = new Date();if (x != null && x instanceof List) { if (x[0] != null && x[0] instanceof Map){ def st = x[0].getOrDefault(\"gte\",\"\");SimpleDateFormat format = new SimpleDateFormat();if (st.length()>7) {format.applyPattern(\"yyyy-MM-dd\");}else if (st.length()>4){format.applyPattern(\"yyyy-MM\");}else if (st.length()==4){format.applyPattern(\"yyyy\");} try { dt = format.parse(st);} catch (Exception e){}}} return dt.getTime()"},"order": 'desc'}}, - {"_script":{"type":"number", "script": "Float.parseFloat(doc['control_number'].value)", "order": "asc"}}] - assert urlargs == dict(sort="-temporal") \ No newline at end of file + {"_script":{"type":"number", "script": "if ( doc['control_number'].size() != 0 ) { return Float.parseFloat(doc['control_number'].value) } else { return 0.0 }", "order": "asc"}}] + assert urlargs == dict(sort="-temporal") diff --git a/modules/invenio-records-rest/tests/test_views_item_delete.py b/modules/invenio-records-rest/tests/test_views_item_delete.py index b239e1bad9..e0a3061597 100644 --- a/modules/invenio-records-rest/tests/test_views_item_delete.py +++ b/modules/invenio-records-rest/tests/test_views_item_delete.py @@ -11,14 +11,16 @@ from flask import url_for from helpers import get_json, record_url from invenio_pidstore.models import PersistentIdentifier, PIDStatus -from mock import patch +from unittest.mock import MagicMock, patch from sqlalchemy.exc import SQLAlchemyError from invenio_records.models import RecordMetadata +from invenio_records_rest.errors import PIDResolveRESTError -def test_valid_delete(app, indexed_records): +@patch("invenio_records_rest.views.db.session.remove") +def test_valid_delete(mock_remove, app, indexed_records): """Test VALID record delete request (DELETE .../records/