From 05de3a657e53c7b33867724a53b45a3addd21a00 Mon Sep 17 00:00:00 2001 From: Jose Blanco <blancoj@umich.edu> Date: Tue, 28 May 2024 14:07:22 -0400 Subject: [PATCH] depoist form changes. --- .../org/dspace/app/util/DCInputsReader.java | 35 +- .../authenticate/OidcAuthenticationBean.java | 7 +- .../main/java/org/dspace/eperson/EPerson.java | 22 + .../dspace/eperson/EPersonServiceImpl.java | 5 + .../main/java/org/dspace/eperson/Proxies.java | 8 + .../org/dspace/eperson/dao/EPersonDAO.java | 2 + .../eperson/dao/impl/EPersonDAOImpl.java | 11 + .../eperson/service/EPersonService.java | 1 + .../main/java/org/dspace/web/ContextUtil.java | 12 + .../xmlworkflow/XmlWorkflowServiceImpl.java | 15 + .../postgres/V7.6_2023.08.16__um_tables.sql | 2 +- .../app/rest/submit/SubmissionService.java | 3 + dspace/config/emails/request_item.author | 6 +- dspace/config/emails/submit_archive | 9 +- dspace/config/item-submission.xml | 511 +- dspace/config/modules/authentication.cfg | 3 +- dspace/config/submission-forms.xml | 5253 +++++++++++++---- 17 files changed, 4848 insertions(+), 1057 deletions(-) diff --git a/dspace-api/src/main/java/org/dspace/app/util/DCInputsReader.java b/dspace-api/src/main/java/org/dspace/app/util/DCInputsReader.java index 783ff73f3da1..8fd3795eeec5 100644 --- a/dspace-api/src/main/java/org/dspace/app/util/DCInputsReader.java +++ b/dspace-api/src/main/java/org/dspace/app/util/DCInputsReader.java @@ -51,9 +51,6 @@ import org.dspace.services.model.Request; import org.dspace.utils.DSpace; -// This gives and error. -//import org.dspace.app.rest.utils.ContextUtil; - /** * Submission form generator for DSpace. Reads and parses the installation * form definitions file, submission-forms.xml, from the configuration directory. @@ -183,15 +180,22 @@ public List<String> getPairs(String name) { // UM Change - needed for mapping and proxy depositor logic. Context c = ContextUtil.obtainCurrentRequestContext(); - HttpServletRequest request = null; + //HttpServletRequest request = null; RequestService requestService = new DSpace().getRequestService(); + String collectionUUID = "NO_UUID"; // Default Value + + // This code could be cleaned up. From what I see the currentRequest is never null, + // but I will leave it here for now. Request currentRequest = requestService.getCurrentRequest(); - if ( currentRequest != null) + if ( currentRequest == null) { - log.info("PROX: curretnRequest is not null"); - request = currentRequest.getHttpServletRequest(); + log.info("COLL: owningCollectin=" + collectionUUID); + } + { + collectionUUID = ContextUtil.getCollectionUUID(); + log.info("COLL: owningCollectin=" + collectionUUID); } List<String> myList = new ArrayList<>(); @@ -211,7 +215,7 @@ public List<String> getPairs(String name) { UUID id = t.getID(); String the_id = id.toString(); - if ( !the_id.equals(pr_collection_id) ) + if ( !the_id.equals(pr_collection_id) && !the_id.equals(collectionUUID) ) { myList.add(nameUser); myList.add( the_id ); @@ -229,13 +233,15 @@ public List<String> getPairs(String name) { } else if (name.startsWith("depositor")) { try { + // This is the way I was doing it when I could not get the uuid or handle passed on. + // But found a way to get it passed to this method. // UM Change. // Get the collection handle from the configuration. // This is different from the way we did it in 6.3 // depositor_123456789_6 // 01234567890 - String collectionHandle = name.substring(10).replace("_", "/"); - log.info ("PROX: this is the coll=" + collectionHandle); + //String collectionHandle = name.substring(10).replace("_", "/"); + //log.info ("PROX: this is the coll=" + collectionHandle); if ( c.getCurrentUser() != null ) { @@ -251,8 +257,7 @@ public List<String> getPairs(String name) { myList.add(labelMain); myList.add("SELF"); - - EPerson[] Proxies = ePerson.getProxies ( c, userid, collectionHandle ); + EPerson[] Proxies = ePerson.getProxiesByUUID ( c, userid, collectionUUID ); log.info ("PROX: processing request"); for (int k = 0; k < Proxies.length; k++) @@ -293,7 +298,8 @@ public List<String> getPairs(String name) { * @throws ServletException */ public List<DCInputSet> getInputsByCollectionHandle(String collectionHandle) - throws DCInputsReaderException { + throws DCInputsReaderException { + SubmissionConfig config; try { config = new SubmissionConfigReader().getSubmissionConfigByCollection(collectionHandle); @@ -834,7 +840,8 @@ private String getValue(Node nd) { } public String getInputFormNameByCollectionAndField(Collection collection, String field) - throws DCInputsReaderException { + throws DCInputsReaderException { + List<DCInputSet> inputSets = getInputsByCollectionHandle(collection.getHandle()); for (DCInputSet inputSet : inputSets) { String[] tokenized = Utils.tokenize(field); diff --git a/dspace-api/src/main/java/org/dspace/authenticate/OidcAuthenticationBean.java b/dspace-api/src/main/java/org/dspace/authenticate/OidcAuthenticationBean.java index aa334d0a9115..b4cc85e42a4e 100644 --- a/dspace-api/src/main/java/org/dspace/authenticate/OidcAuthenticationBean.java +++ b/dspace-api/src/main/java/org/dspace/authenticate/OidcAuthenticationBean.java @@ -109,7 +109,12 @@ public List<Group> getSpecialGroups(Context context, HttpServletRequest request) GroupService groupService = EPersonServiceFactory.getInstance().getGroupService(); - //Using this one for testing in docker + // UM Change + // The way swordv2 works now, the code will come here, and in that case request will be null. + if ( request == null ) + { + return Collections.emptyList(); + } String addr = request.getRemoteAddr(); // This is the one you should use on the live area. diff --git a/dspace-api/src/main/java/org/dspace/eperson/EPerson.java b/dspace-api/src/main/java/org/dspace/eperson/EPerson.java index db3cfcfd37dd..7c0da977c5a6 100644 --- a/dspace-api/src/main/java/org/dspace/eperson/EPerson.java +++ b/dspace-api/src/main/java/org/dspace/eperson/EPerson.java @@ -189,6 +189,28 @@ public static EPerson[] getProxies (Context context, UUID depositor_id, String c return epersonArray; } + + public static EPerson[] getProxiesByUUID (Context context, UUID depositor_id, String collectionUUID) throws SQLException + { + List<EPerson> proxies = new ArrayList<EPerson>(); + + EPersonService ePersonService = EPersonServiceFactory.getInstance().getEPersonService(); + if (!collectionUUID.equals("NO_UUID") ) + { + proxies = ePersonService.findProxiesForDepositorInCollectionByUUID(context, depositor_id, collectionUUID); + } + else + { + proxies = ePersonService.findProxiesForDepositor(context, depositor_id); + } + + EPerson[] epersonArray = new EPerson[proxies.size()]; + epersonArray = (EPerson[]) proxies.toArray(epersonArray); + + return epersonArray; + + } + // End UM Change /** diff --git a/dspace-api/src/main/java/org/dspace/eperson/EPersonServiceImpl.java b/dspace-api/src/main/java/org/dspace/eperson/EPersonServiceImpl.java index 387990d26022..2872979b1034 100644 --- a/dspace-api/src/main/java/org/dspace/eperson/EPersonServiceImpl.java +++ b/dspace-api/src/main/java/org/dspace/eperson/EPersonServiceImpl.java @@ -584,6 +584,11 @@ public List <EPerson> findProxiesForDepositorInCollection(Context context, UUID return ePersonDAO.findProxiesForDepositorInCollection(context, depositor_id, collection_handle); } + @Override + public List <EPerson> findProxiesForDepositorInCollectionByUUID(Context context, UUID depositor_id, String collectionUUID) throws SQLException { + return ePersonDAO.findProxiesForDepositorInCollectionByUUID(context, depositor_id, collectionUUID); + } + @Override public int countIndivStats(Context context, String email) throws SQLException { return ePersonDAO.countIndivStats(context, email); diff --git a/dspace-api/src/main/java/org/dspace/eperson/Proxies.java b/dspace-api/src/main/java/org/dspace/eperson/Proxies.java index 687a8479a48b..fe66d85a2a1e 100644 --- a/dspace-api/src/main/java/org/dspace/eperson/Proxies.java +++ b/dspace-api/src/main/java/org/dspace/eperson/Proxies.java @@ -48,6 +48,10 @@ public class Proxies implements ReloadableEntity<Integer> { @Column(name = "handle", unique = false) private String handle; + @Column(name = "uuid", unique = false) + private String uuid; + + /** * Protected constructor, create object using: * {@link org.dspace.eperson.service.SubscribeService#subscribe(Context, EPerson, Collection)} @@ -83,6 +87,10 @@ public String getHandle() { return handle; } + public String getUUID() { + return uuid; + } + void setePerson(String handle) { this.handle = handle; } diff --git a/dspace-api/src/main/java/org/dspace/eperson/dao/EPersonDAO.java b/dspace-api/src/main/java/org/dspace/eperson/dao/EPersonDAO.java index 5154542c911d..d79582f443a9 100644 --- a/dspace-api/src/main/java/org/dspace/eperson/dao/EPersonDAO.java +++ b/dspace-api/src/main/java/org/dspace/eperson/dao/EPersonDAO.java @@ -55,6 +55,8 @@ public List<EPerson> findAll(Context context, MetadataField metadataFieldSort, S public List<EPerson> findProxiesForDepositorInCollection(Context context, UUID depositor_id, String collection_handle) throws SQLException; + public List<EPerson> findProxiesForDepositorInCollectionByUUID(Context context, UUID depositor_id, String collectionUUID) throws SQLException; + public int countIndivStats(Context context, String email) throws SQLException; public void DeleteFromIndivStats(Context context, String email) throws SQLException; diff --git a/dspace-api/src/main/java/org/dspace/eperson/dao/impl/EPersonDAOImpl.java b/dspace-api/src/main/java/org/dspace/eperson/dao/impl/EPersonDAOImpl.java index a044d08622a4..626e4d093cae 100644 --- a/dspace-api/src/main/java/org/dspace/eperson/dao/impl/EPersonDAOImpl.java +++ b/dspace-api/src/main/java/org/dspace/eperson/dao/impl/EPersonDAOImpl.java @@ -233,6 +233,17 @@ public List <EPerson> findProxiesForDepositorInCollection(Context context, UUID return list(query); } + @Override + public List <EPerson> findProxiesForDepositorInCollectionByUUID(Context context, UUID depositor_id, String collectionUUID) throws SQLException { + + + Query query = createQuery(context, "SELECT e FROM EPerson e WHERE e.id in (SELECT p.ePerson_proxy FROM Proxies p WHERE p.ePerson_depositor = :depositor_id AND p.uuid= :collectionUUID)"); + query.setParameter("depositor_id", depositor_id); + query.setParameter("collectionUUID", collectionUUID); + + return list(query); + } + @Override public int countIndivStats(Context context, String email) throws SQLException { diff --git a/dspace-api/src/main/java/org/dspace/eperson/service/EPersonService.java b/dspace-api/src/main/java/org/dspace/eperson/service/EPersonService.java index 6d578161046f..99e7ad4a4d84 100644 --- a/dspace-api/src/main/java/org/dspace/eperson/service/EPersonService.java +++ b/dspace-api/src/main/java/org/dspace/eperson/service/EPersonService.java @@ -262,6 +262,7 @@ public EPerson create(Context context) throws SQLException, public List <EPerson> findProxiesForDepositorInCollection(Context context, UUID depositor_id, String collection_handle) throws SQLException; + public List <EPerson> findProxiesForDepositorInCollectionByUUID(Context context, UUID depositor_id, String collectionUUID) throws SQLException; public int countIndivStats(Context context, String email) throws SQLException; diff --git a/dspace-api/src/main/java/org/dspace/web/ContextUtil.java b/dspace-api/src/main/java/org/dspace/web/ContextUtil.java index 4bdf26c05381..9dcb4d3ab231 100644 --- a/dspace-api/src/main/java/org/dspace/web/ContextUtil.java +++ b/dspace-api/src/main/java/org/dspace/web/ContextUtil.java @@ -45,6 +45,8 @@ public class ContextUtil { */ private ContextUtil() { } + public static String collectionUUID = "NO_UUID"; + /** * Inspection method to check if a DSpace context has been created for this request. * @@ -106,6 +108,16 @@ public static Context obtainCurrentRequestContext() { return context; } + // To be able to pass the collection UUID to DCInputsReader.java + public static void setCollectionUUID(String uuid) { + collectionUUID = uuid; + } + + public static String getCollectionUUID() { + return collectionUUID; + } + // End + private static Locale getLocale(Context context, HttpServletRequest request) { Locale userLocale = null; Locale supportedLocale = null; diff --git a/dspace-api/src/main/java/org/dspace/xmlworkflow/XmlWorkflowServiceImpl.java b/dspace-api/src/main/java/org/dspace/xmlworkflow/XmlWorkflowServiceImpl.java index 0e65d45007af..5874c2dc3cee 100644 --- a/dspace-api/src/main/java/org/dspace/xmlworkflow/XmlWorkflowServiceImpl.java +++ b/dspace-api/src/main/java/org/dspace/xmlworkflow/XmlWorkflowServiceImpl.java @@ -83,6 +83,9 @@ import java.text.DateFormat; import java.text.SimpleDateFormat; +import org.dspace.identifier.DOIIdentifierProvider; +import org.dspace.content.DSpaceObject; + /** * When an item is submitted and is somewhere in a workflow, it has a row in the * {@code cwf_workflowitem} table pointing to it. @@ -806,6 +809,17 @@ protected void notifyOfArchive(Context context, Item item, Collection coll) // Get the item handle to email to user String handle = handleService.findHandle(context, item); + DOIIdentifierProvider doiIdentifierProvider = DSpaceServicesFactory.getInstance().getServiceManager() + .getServiceByName("org.dspace.identifier.DOIIdentifierProvider", DOIIdentifierProvider.class); + + DSpaceObject item_dso = (DSpaceObject) item; + String doi = doiIdentifierProvider.getDOIByObject(context, item_dso); + + // what you get for doi: doi:10.33577/42 + // what you want to send out in email:https://dx.doi.org/10.7302/22447 + String doi_url = doi.replace("doi:", "https://dx.doi.org/"); + log.info("DOIHERE is = " + doi_url); + // Get title List<MetadataValue> titles = itemService .getMetadata(item, MetadataSchemaEnum.DC.getName(), "title", null, Item.ANY); @@ -850,6 +864,7 @@ protected void notifyOfArchive(Context context, Item item, Collection coll) email.addArgument(title); email.addArgument(coll.getName()); email.addArgument(handleService.getCanonicalForm(handle)); + email.addArgument(doi_url); email.send(); } diff --git a/dspace-api/src/main/resources/org/dspace/storage/rdbms/sqlmigration/postgres/V7.6_2023.08.16__um_tables.sql b/dspace-api/src/main/resources/org/dspace/storage/rdbms/sqlmigration/postgres/V7.6_2023.08.16__um_tables.sql index 976852e78acc..b1295037dfe0 100644 --- a/dspace-api/src/main/resources/org/dspace/storage/rdbms/sqlmigration/postgres/V7.6_2023.08.16__um_tables.sql +++ b/dspace-api/src/main/resources/org/dspace/storage/rdbms/sqlmigration/postgres/V7.6_2023.08.16__um_tables.sql @@ -7,7 +7,7 @@ -- CREATE SEQUENCE proxies_seq; -create table proxies (proxies_id integer NOT NULL DEFAULT nextval('proxies_seq'), depositor_id uuid, proxy_id uuid, handle varchar(100)); +create table proxies (proxies_id integer NOT NULL DEFAULT nextval('proxies_seq'), depositor_id uuid, proxy_id uuid, handle varchar(100), uuid varchar(100)); CREATE SEQUENCE umrestricted_seq; diff --git a/dspace-server-webapp/src/main/java/org/dspace/app/rest/submit/SubmissionService.java b/dspace-server-webapp/src/main/java/org/dspace/app/rest/submit/SubmissionService.java index 76de36dde65b..994357e56d35 100644 --- a/dspace-server-webapp/src/main/java/org/dspace/app/rest/submit/SubmissionService.java +++ b/dspace-server-webapp/src/main/java/org/dspace/app/rest/submit/SubmissionService.java @@ -126,6 +126,9 @@ public WorkspaceItem createWorkspaceItem(Context context, Request request) throw collectionUUID = configurationService.getProperty("submission.default.collection"); } + // Save collection UUID to pass to the DCInputsReader.java file. + org.dspace.web.ContextUtil.setCollectionUUID(collectionUUID); + try { if (StringUtils.isNotBlank(collectionUUID)) { collection = collectionService.find(context, UUID.fromString(collectionUUID)); diff --git a/dspace/config/emails/request_item.author b/dspace/config/emails/request_item.author index eb9c4f38f661..153fadf74373 100644 --- a/dspace/config/emails/request_item.author +++ b/dspace/config/emails/request_item.author @@ -11,7 +11,7 @@ ## 8 corresponding author email ## 9 configuration property "dspace.name" ## 10 configuration property "mail.helpdesk" -#set($subject = "${config.get('dspace.name')}: Request copy of document") +#set($subject = "Request copy of document") Dear ${params[7]}, @@ -27,6 +27,4 @@ IF YOU ARE NOT AN AUTHOR OF THIS DOCUMENT, and only submitted the document on th IF YOU ARE AN AUTHOR OF THE REQUESTED DOCUMENT, thank you for your cooperation! -If you have any questions concerning this request, please contact ${params[10]}. - -The ${config.get('dspace.name')} Team +If you have any questions concerning this request, please contact ${params[10]}. \ No newline at end of file diff --git a/dspace/config/emails/submit_archive b/dspace/config/emails/submit_archive index 632d260d91a4..cbb5de4f7154 100644 --- a/dspace/config/emails/submit_archive +++ b/dspace/config/emails/submit_archive @@ -5,18 +5,17 @@ ## {2} handle ## {3} Identifier ## -#set($subject = 'DSpace: Deep Blue: Submission Approved and Archived') +#set($subject = 'Deep Blue: Submission Approved and Archived') ${params[0]}: ${params[1]} To collection: ${params[2]} -Its identifier: ${params[3]} +Deep Blue DOI: ${params[4]} -Note: Please use this identifier in your citations to this work; you can use this identifier immediately in citations to your work, but it may take a -few minutes for the the deposit to appear in Deep Blue Document's index. +Note: Please use this identifier when citing your work; you can use it immediately, but it may take one to two (1-2) hours for the DOI to be activated as a clickable URL. Thank you! -Deep Blue Documents +Deep Blue diff --git a/dspace/config/item-submission.xml b/dspace/config/item-submission.xml index 4346e76875e8..415d85b35563 100644 --- a/dspace/config/item-submission.xml +++ b/dspace/config/item-submission.xml @@ -18,9 +18,33 @@ <!-- for handle "default". --> <submission-map> <!-- Default submission process --> - <name-map collection-handle="default" submission-name="traditional"/> + <name-map collection-handle="default" submission-name="traditional"/> +<!-- + +<name-map collection-handle="123456789/2" submission-name="traditionalCC_um" /> + + <name-map collection-handle="2027.42/64026" submission-name="busadisp" /> + <name-map collection-handle="2027.42/49252" submission-name="biostation" /> + <name-map collection-handle="2027.42/57190" submission-name="grocs" /> + <name-map collection-handle="2027.42/55461" submission-name="honorsthesis" /> + <name-map collection-handle="2027.42/49548" submission-name="meche" /> + <name-map collection-handle="2027.42/41251" submission-name="paleo" /> + <name-map collection-handle="2027.42/35324" submission-name="busadwp" /> + <name-map collection-handle="2027.42/21609" submission-name="ipc" /> + <name-map collection-handle="2027.42/39366" submission-name="thesis" /> + <name-map collection-handle="2027.42/13914" submission-name="umtri" /> + <name-map collection-handle="2027.42/149471" submission-name="rossseniorthesis" /> + + <name-map collection-handle="2027.42/40243" submission-name="traditionalCC_um" /> + <name-map collection-handle="2027.42/55277" submission-name="traditionalCC_um" /> + <name-map collection-handle="2027.42/40241" submission-name="traditionalCC_um" /> + <name-map collection-handle="2027.42/78530" submission-name="traditionalCC_um" /> +--> + + + + - <name-map collection-handle="123456789/2" submission-name="Jose"/> <!-- Sample Entities Collection configuration based on the demo Entities dataset available at: https://github.com/DSpace-Labs/AIP-Files/releases/tag/demo-entities-data @@ -110,11 +134,145 @@ <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> <type>submission-form</type> </step-definition> + + <step-definition id="traditionalpageone_um" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_busadisp" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_biostation" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_grocs" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_honorsthesis" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_meche" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_paleo" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_busadwp" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_ipc" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_thesis" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_umtri" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpageone_rossseniorthesis" mandatory="true"> + <heading>submit.progressbar.describe.stepone</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + + + + + + <step-definition id="traditionalpagetwo" mandatory="true"> <heading>submit.progressbar.describe.steptwo</heading> <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> <type>submission-form</type> </step-definition> + <step-definition id="traditionalpagetwo_um" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + + + <step-definition id="traditionalpagetwo_busadisp" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_biostation" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_grocs" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_honorsthesis" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_meche" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_paleo" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_busadwp" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_ipc" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_thesis" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_umtri" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + <step-definition id="traditionalpagetwo_rossseniorthesis" mandatory="true"> + <heading>submit.progressbar.describe.steptwo</heading> + <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> + <type>submission-form</type> + </step-definition> + + + + + <step-definition id="publicationStep" mandatory="true"> <heading>submit.progressbar.describe.stepone</heading> <processing-class>org.dspace.app.rest.submit.step.DescribeStep</processing-class> @@ -316,6 +474,355 @@ <step id="license"/> </submission-process> +<!-- UM Config --> + + <submission-process name="traditional_um"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_um"/> + <step id="traditionalpagetwo_um"/> + + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!-- Uncomment this step to show when appropriate publisher policies retrieved from SHERPA/RoMEO --> + <!-- <step id="sherpaPolicies"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- <step id="extractionstep"/> --> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + + <submission-process name="traditionalCC_um"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_um"/> + <step id="traditionalpagetwo_um"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!-- Uncomment this step to show when appropriate publisher policies retrieved from SHERPA/RoMEO --> + <!-- <step id="sherpaPolicies"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- <step id="extractionstep"/> --> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <step id="cclicense"/> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + + + <submission-process name="busadisp"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_busadisp"/> + <step id="traditionalpagetwo_busadisp"/> + + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!-- Uncomment this step to show when appropriate publisher policies retrieved from SHERPA/RoMEO --> + <!-- <step id="sherpaPolicies"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- <step id="extractionstep"/> --> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="biostation"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_biostation"/> + <step id="traditionalpagetwo_biostation"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="grocs"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_grocs"/> + <step id="traditionalpagetwo_grocs"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="honorsthesis"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_honorsthesis"/> + <step id="traditionalpagetwo_honorsthesis"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="meche"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_meche"/> + <step id="traditionalpagetwo_meche"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="paleo"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_paleo"/> + <step id="traditionalpagetwo_paleo"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="busadwp"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_busadwp"/> + <step id="traditionalpagetwo_busadwp"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="ipc"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_ipc"/> + <step id="traditionalpagetwo_ipc"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="thesis"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_thesis"/> + <step id="traditionalpagetwo_thesis"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="umtri"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_umtri"/> + <step id="traditionalpagetwo_umtri"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + <submission-process name="rossseniorthesis"> + <!--Uncommment to display the SAMPLE step as your first step --> + <!--<step id="sample"/> --> + + <step id="collection"/> + <!-- To include the 'Show Identifiers' step, uncomment the line below. Make sure + that identifiers.cfg and identifier-service.xml are properly configured. --> + <step id="identifiers"/> + <!--Step will be to Describe the item. --> + <step id="traditionalpageone_rossseniorthesis"/> + <step id="traditionalpagetwo_rossseniorthesis"/> + + <!-- Uncomment this step to allow the user to embargo or access restrict the entire item --> + <!-- <step id="itemAccessConditions"/> --> + + <!--Step will be to Upload the item --> + <step id="upload"/> + + <!-- Uncomment this step to allow the user to select a Creative Commons License --> + <!-- <step id="cclicense"/> --> + + <!--Step will be to Sign off on the required DSpace License agreement --> + <step id="license"/> + </submission-process> + + +<!-- End UM Config --> <!-- diff --git a/dspace/config/modules/authentication.cfg b/dspace/config/modules/authentication.cfg index d47cab93bc3d..493c4e1caa14 100644 --- a/dspace/config/modules/authentication.cfg +++ b/dspace/config/modules/authentication.cfg @@ -66,7 +66,8 @@ #Jose this is the way it is out of the box. plugin.sequence.org.dspace.authenticate.AuthenticationMethod = org.dspace.authenticate.PasswordAuthentication -#plugin.sequence.org.dspace.authenticate.AuthenticationMethod = org.dspace.authenticate.OidcAuthentication +#Order is importatnt, the rest api and swordv2 wil try PasswordAuthenticaiton first before the OidcAuthentication. +#plugin.sequence.org.dspace.authenticate.AuthenticationMethod = org.dspace.authenticate.PasswordAuthentication,org.dspace.authenticate.OidcAuthentication #---------------------------------------------------------------# diff --git a/dspace/config/submission-forms.xml b/dspace/config/submission-forms.xml index a51e4c0de1d1..f37c08f52562 100644 --- a/dspace/config/submission-forms.xml +++ b/dspace/config/submission-forms.xml @@ -59,7 +59,7 @@ <dc-qualifier>depositor</dc-qualifier> <repeatable>false</repeatable> <label>Depositing as</label> - <input-type value-pairs-name="depositor_123456789_416">dropdown</input-type> + <input-type value-pairs-name="depositor">dropdown</input-type> <hint>Deposit as yourself, or as a proxy for someone else.</hint> <required></required> </field> @@ -112,7 +112,7 @@ <dc-qualifier>author</dc-qualifier> <repeatable>true</repeatable> <label>Author</label> - <input-type>onebox</input-type> + <input-type>name</input-type> <hint>Enter the author's name (Family name, Given names).</hint> <required></required> </field> @@ -237,1359 +237,4590 @@ </row> </form> - <!-- Form which defines the second page/section of the "traditional" DSpace submission process, - often used when depositing normal Items. --> - <form name="traditionalpagetwo"> +<!--- For UM Specific collections --> + + <form name="traditionalpageone_um"> <row> <field> <dc-schema>dc</dc-schema> - <dc-element>subject</dc-element> - <dc-qualifier></dc-qualifier> - <!-- An input-type of tag MUST be marked as repeatable --> - <repeatable>true</repeatable> - <label>Subject Keywords</label> - <input-type>tag</input-type> - <hint>Enter appropriate subject keywords or phrases.</hint> - <required></required> - <vocabulary>srsc</vocabulary> + <dc-element>description</dc-element> + <dc-qualifier>depositor</dc-qualifier> + <repeatable>false</repeatable> + <label>Depositing as</label> + <input-type value-pairs-name="depositor">dropdown</input-type> + <hint>Deposit as yourself, or as a proxy for someone else.</hint> + <required></required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <dc-qualifier>abstract</dc-qualifier> - <repeatable>false</repeatable> - <label>Abstract</label> - <input-type>textarea</input-type> - <hint>Enter the abstract of the item.</hint> - <required></required> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>*Author(s)</label> + <input-type>name</input-type> + <hint>Names of the author(s) of this item. (* required)</hint> + <required>At least one author is required.</required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <dc-qualifier>sponsorship</dc-qualifier> - <repeatable>false</repeatable> - <label>Sponsors</label> - <input-type>textarea</input-type> - <hint>Enter the names of any sponsors and/or funding codes in the box.</hint> - <required></required> + <dc-element>identifier</dc-element> + <dc-qualifier>orcid</dc-qualifier> + <repeatable>true</repeatable> + <label>ORCID iD</label> + <input-type>onebox</input-type> + <hint>ORCID iD(s) for author(s) of this item.</hint> + <required></required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter any other description or comments in this box.</hint> - <required></required> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationum</dc-qualifier> + <repeatable>true</repeatable> + <label>U-M Author Affiliation</label> + <input-type>onebox</input-type> + <hint>U-M Author's affiliation(s)</hint> + <required></required> </field> </row> - </form> - - <!-- Form which defines the *first* metadata page/section for depositing Publication Entities. - Since Publication Entities are very similar to normal Items, this is nearly identical to the - 'traditionalpageone' form. The only difference is the Author field can be used to link the - Publication Entity to a Person Entity. --> - <form name="publicationStep"> <row> - <relation-field> - <relationship-type>isAuthorOfPublication</relationship-type> - <search-configuration>person</search-configuration> - <repeatable>true</repeatable> - <label>Author</label> - <hint>Enter the author's name (Family name, Given names).</hint> - <linked-metadata-field> - <dc-schema>dc</dc-schema> - <dc-element>contributor</dc-element> - <dc-qualifier>author</dc-qualifier> - <input-type>onebox</input-type> - </linked-metadata-field> - <externalsources>orcid</externalsources> - <required></required> - <!-- You may choose to validate author names via a Regular Expression if it's appropriate for - your institution. The below regex requires a comma to be present in the author field. - However, this is disabled by default to support organizations as authors, etc. --> - <!--<regex>\w+(,)+\w+</regex>--> - </relation-field> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationother</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Author Affiliation, non-U-M</label> + <input-type>onebox</input-type> + <hint>Author's affiliation(s), non-U-M</hint> + <required></required> + </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Title</label> - <input-type>onebox</input-type> - <hint>Enter the main title of the item.</hint> - <required>You must enter a main title for this item.</required> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationumcampus</dc-qualifier> + <repeatable>false</repeatable> + <label>U-M Campus</label> + <input-type value-pairs-name="um_campus">dropdown</input-type> + <hint> </hint> + <required>true</required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <dc-qualifier>alternative</dc-qualifier> - <repeatable>true</repeatable> - <label>Other Titles</label> - <input-type>onebox</input-type> - <hint>If the item has any alternative titles, please enter them here.</hint> - <required></required> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>*Document or Item Title</label> + <input-type>onebox</input-type> + <hint>Enter the main title of the item. (* required)</hint> + <required>You must enter a main title for this item.</required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>date</dc-element> - <dc-qualifier>issued</dc-qualifier> - <repeatable>false</repeatable> - <label>Date of Issue</label> - <style>col-sm-4</style> - <input-type>date</input-type> - <hint>Please give the date of previous publication or public distribution. - You can leave out the day and/or month if they aren't applicable. - </hint> - <required>You must enter at least the year.</required> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Document or Item Titles</label> + <input-type>onebox</input-type> + <hint>If the item has any alternate titles, please enter them.</hint> + <required></required> </field> + </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>publisher</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Publisher</label> - <style>col-sm-8</style> - <input-type>onebox</input-type> - <hint>Enter the name of the publisher of the previously issued instance of this item.</hint> - <required></required> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>*Date of Issue</label> + <input-type>date</input-type> + <hint>Use today's date if Deep Blue is this item's first place of publication. (* YYYY required)</hint> + <required>You must enter at least the year (YYYY). Day and month are not required.</required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>identifier</dc-element> - <dc-qualifier>citation</dc-qualifier> - <repeatable>false</repeatable> - <label>Citation</label> - <input-type>onebox</input-type> - <hint>Enter the standard citation for the previously issued instance of this item.</hint> - <required></required> + <dc-element>identifier</dc-element> + <dc-qualifier>source</dc-qualifier> + <repeatable>false</repeatable> + <label>Source</label> + <input-type>onebox</input-type> + <hint>Journal name, book title, etc.</hint> + <required></required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>relation</dc-element> - <dc-qualifier>ispartofseries</dc-qualifier> - <repeatable>true</repeatable> - <label>Series/Report No.</label> - <input-type>series</input-type> - <hint>Enter the series and number assigned to this item by your community.</hint> - <required></required> + <dc-element>publisher</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Publisher</label> + <input-type>onebox</input-type> + <hint>Use only if previously published (e.g., in a journal).</hint> + <required></required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>identifier</dc-element> - <dc-qualifier></dc-qualifier> - <!-- An input-type of qualdrop_value MUST be marked as repeatable --> - <repeatable>true</repeatable> - <label>Identifiers</label> - <input-type value-pairs-name="common_identifiers">qualdrop_value</input-type> - <hint>If the item has any identification numbers or codes associated with - it, please enter the types and the actual numbers or codes. - </hint> - <required></required> + <dc-element>description</dc-element> + <dc-qualifier>peerreviewed</dc-qualifier> + <repeatable>false</repeatable> + <label>Peer Reviewed</label> + <input-type value-pairs-name="peer_reviewed">dropdown</input-type> + <hint>Select "Peer Reviewed" if item is peer reviewed.</hint> + <required></required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>type</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>true</repeatable> - <label>Type</label> - <input-type value-pairs-name="common_types">dropdown</input-type> - <hint>Select the type(s) of content of the item. To select more than one value in the list, you may - have to hold down the "CTRL" or "Shift" key. - </hint> - <required></required> + <dc-element>identifier</dc-element> + <dc-qualifier>citation</dc-qualifier> + <repeatable>false</repeatable> + <label>Citation</label> + <input-type>onebox</input-type> + <hint>The citation for this item's previous publication. (e.g. Journal of X, vol. Y, no. Z, year, pp. m-n)</hint> + <required></required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>language</dc-element> - <dc-qualifier>iso</dc-qualifier> - <repeatable>false</repeatable> - <label>Language</label> - <input-type value-pairs-name="common_iso_languages">dropdown</input-type> - <hint>Select the language of the main content of the item. If the language does not appear in the - list, please select 'Other'. If the content does not really have a language (for example, if it - is a dataset or an image) please select 'N/A'. - </hint> - <required></required> + <dc-element>relation</dc-element> + <dc-qualifier>ispartofseries</dc-qualifier> + <repeatable>true</repeatable> + <label>Series/Report No./Version</label> + <input-type>onebox</input-type> + <hint>Any series, number, version, or release assigned to this item.</hint> + <required></required> </field> </row> - </form> - <!-- Form which defines the metadata page/section for depositing Person Entities --> - <form name="personStep"> <row> - <relation-field> - <relationship-type>isPublicationOfAuthor</relationship-type> - <search-configuration>publication</search-configuration> - <label>Publication</label> - <hint>import a publicaton</hint> - <externalsources>pubmed</externalsources> - </relation-field> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of qualdrop_value MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Identifiers</label> + <input-type value-pairs-name="common_identifiers">qualdrop_value</input-type> + <hint>If the item has identification numbers/codes associated with it, please select the type(s) and enter them.</hint> + <required></required> + </field> </row> + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>familyName</dc-element> - <label>Last name</label> - <input-type>onebox</input-type> - <hint>Enter the last name of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>*Type</label> + <input-type value-pairs-name="common_types">dropdown</input-type> + <hint>To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key.</hint> + <required>Type is required</required> </field> </row> + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>givenName</dc-element> - <label>First name</label> - <input-type>onebox</input-type> - <hint>Enter the first name of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint>The language of the main content. If the content does not really have a language (e.g. datasets or images) please select 'N/A'.</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>email</dc-element> - <label>Email</label> - <input-type>onebox</input-type> - <hint>Enter the email of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>mapping</dc-qualifier> + <repeatable>true</repeatable> + <label>Display in Other Collections</label> + <input-type value-pairs-name="collection_mappings">dropdown</input-type> + <hint>If you are also a depositor in another collection and you'd like to associate your work with it, you may select the collection(s) here (e.g. a thesis may be added to the general thesis collection as well as appear in the relevant departmental collection(s) ). This box will be blank if you are not a depositor in other collections</hint> + <required></required> </field> </row> - <!-- <row>--> - <!-- <field>--> - <!-- <dc-schema>person</dc-schema>--> - <!-- <dc-element>identifier</dc-element>--> - <!-- <dc-qualifier>orcid</dc-qualifier>--> - <!-- <label>Orcid</label>--> - <!-- <input-type>onebox</input-type>--> - <!-- <hint>Enter the orcid of the person</hint>--> - <!-- </field>--> - <!-- </row>--> + </form> + + <form name="traditionalpagetwo_um"> <row> <field> - <dc-schema>person</dc-schema> - <dc-element>birthDate</dc-element> - <label>Birth date</label> - <input-type>date</input-type> - <hint>Enter the birth date of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of twobox MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Subject Keywords</label> + <input-type>onebox</input-type> + <hint>Enter subject keywords or phrases here.</hint> + <required></required> </field> </row> -<!-- <row>--> -<!-- <field>--> -<!-- <dc-schema>person</dc-schema>--> -<!-- <dc-element>identifier</dc-element>--> -<!-- <dc-qualifier>staffid</dc-qualifier>--> -<!-- <label>Staff ID</label>--> -<!-- <input-type>onebox</input-type>--> -<!-- <hint>Enter the staff id of the person</hint>--> -<!-- </field>--> -<!-- </row>--> + + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>jobTitle</dc-element> - <label>Job title</label> - <input-type>onebox</input-type> - <hint>Enter the job title of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Enter the abstract of the item below.</hint> + <required></required> </field> </row> - </form> - <!-- Form which defines the metadata page/section for depositing Project Entities --> - <form name="projectStep"> <row> <field> <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <label>Name</label> - <input-type>onebox</input-type> - <hint>Enter the name of the project</hint> + <dc-element>description</dc-element> + <dc-qualifier>sponsorship</dc-qualifier> + <repeatable>true</repeatable> + <label>Sponsors</label> + <input-type>textarea</input-type> + <hint>The names of any sponsors and/or funding codes.</hint> + <required></required> </field> </row> + <row> <field> <dc-schema>dc</dc-schema> - <dc-element>identifier</dc-element> - <label>ID</label> - <input-type>onebox</input-type> - <hint>Enter the id of the project</hint> + <dc-element>description</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Any additional descriptive information or comments.</hint> + <required></required> </field> </row> -<!-- <row>--> -<!-- <field>--> -<!-- <dc-schema>project</dc-schema>--> -<!-- <dc-element>identifier</dc-element>--> -<!-- <dc-qualifier>status</dc-qualifier>--> -<!-- <label>Status</label>--> -<!-- <input-type value-pairs-name="project_status">dropdown</input-type>--> -<!-- <hint>Enter the status of the project</hint>--> -<!-- </field>--> -<!-- </row>--> -<!-- <row>--> -<!-- <field>--> -<!-- <dc-schema>project</dc-schema>--> -<!-- <dc-element>identifier</dc-element>--> -<!-- <dc-qualifier>startdate</dc-qualifier>--> -<!-- <label>Start date</label>--> -<!-- <input-type>date</input-type>--> -<!-- <hint>Enter the start date of the project</hint>--> -<!-- </field>--> -<!-- </row>--> -<!-- <row>--> -<!-- <field>--> -<!-- <dc-schema>project</dc-schema>--> -<!-- <dc-element>identifier</dc-element>--> -<!-- <dc-qualifier>expectedcompletion</dc-qualifier>--> -<!-- <label>Expected Completion</label>--> -<!-- <input-type>date</input-type>--> -<!-- <hint>Enter the expected completion date of the project</hint>--> -<!-- </field>--> -<!-- </row>--> - <row> - <relation-field> - <relationship-type>isProjectOfPerson</relationship-type> - <search-configuration>person</search-configuration> - <repeatable>true</repeatable> - <label>Investigator</label> - <hint>Enter the investigator's name (Family name, Given names).</hint> - <linked-metadata-field> - <dc-schema>project</dc-schema> - <dc-element>investigator</dc-element> - <input-type>onebox</input-type> - </linked-metadata-field> - <externalsources>orcid</externalsources> - </relation-field> - </row> - <row> - <relation-field> - <relationship-type>isProjectOfOrgUnit</relationship-type> - <search-configuration>orgunit</search-configuration> - <repeatable>false</repeatable> - <label>Organization</label> - <hint>Enter the organization's name</hint> - <linked-metadata-field> - <dc-schema>project</dc-schema> - <dc-element>funder</dc-element> - <dc-qualifier>name</dc-qualifier> - <input-type>onebox</input-type> - </linked-metadata-field> - <externalsources/> - </relation-field> - </row> + </form> + + <form name="traditionalpageone_busadisp"> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>subject</dc-element> - <repeatable>true</repeatable> - <label>Keywords</label> - <input-type>onebox</input-type> - <hint>Enter the keywords of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>Student Name</label> + <input-type>name</input-type> + <hint>Req'd: Student Name, as it appears on the project</hint> + <required>Student name is required</required> </field> </row> + <row> <field> - <dc-schema>project</dc-schema> - <dc-element>startDate</dc-element> - <label>Start date</label> - <input-type>date</input-type> - <hint>Enter the start date of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>advisor</dc-qualifier> + <repeatable>true</repeatable> + <label>Sponsoring Faculty Name</label> + <input-type>name</input-type> + <hint>Req'd: Sponsoring Faculty Name</hint> + <required>Sponsor's name is required</required> </field> + </row> + + <row> <field> - <dc-schema>project</dc-schema> - <dc-element>endDate</dc-element> - <label>End date</label> - <input-type>date</input-type> - <hint>Enter the end date of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>classification</dc-qualifier> + <repeatable>true</repeatable> + <label>Department</label> + <input-type value-pairs-name="busadwp_department_types">dropdown</input-type> + <hint>Primary Ross School of Business department affiliation</hint> + <required>Department is required</required> </field> </row> + <row> <field> - <dc-schema>project</dc-schema> - <dc-element>amount</dc-element> - <label>Amount</label> - <input-type>onebox</input-type> - <hint>Enter the amount of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Course Number</label> + <input-type>onebox</input-type> + <hint>Course number (either 399 or 750)</hint> + <required>Course number is required</required> </field> + </row> + </form> + + <form name="traditionalpagetwo_busadisp"> + <row> <field> - <dc-schema>project</dc-schema> - <dc-element>amount</dc-element> - <dc-qualifier>currency</dc-qualifier> - <label>Amount currency</label> - <input-type>onebox</input-type> - <hint>Enter the amount currency of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title of Project</label> + <input-type>onebox</input-type> + <hint>Req'd: Title of project exactly as it appears on the cover or title page</hint> + <required>Title is required</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter the description of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Date</label> + <input-type>date</input-type> + <hint>Req'd: Please give the date of publication.</hint> + <required>You must enter at least the year (YYYY).</required> </field> </row> </form> - <!-- Form which defines the metadata page/section for depositing OrgUnit Entities --> - <form name="orgUnitStep"> + + <form name="traditionalpageone_biostation"> <row> <field> - <dc-schema>organization</dc-schema> - <dc-element>legalName</dc-element> - <label>Name</label> - <input-type>onebox</input-type> - <hint>Enter the name of the orgunit</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>*Author(s)</label> + <input-type>name</input-type> + <hint>Names of the author(s) of this item. (* required)</hint> + <required>At least one author is required.</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>identifier</dc-element> - <label>ID</label> - <input-type>onebox</input-type> - <hint>Enter the id of the orgunit</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationum</dc-qualifier> + <repeatable>true</repeatable> + <label>U-M Author Affiliation</label> + <input-type>onebox</input-type> + <hint>U-M Author's affiliation(s)</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>organization</dc-schema> - <dc-element>foundingDate</dc-element> - <label>Date established</label> - <input-type>date</input-type> - <hint>Enter the established date of the orgunit</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationother</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Author Affiliation, non-U-M</label> + <input-type>onebox</input-type> + <hint>Author's affiliation(s), non-U-M</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>organization</dc-schema> - <dc-element>address</dc-element> - <dc-qualifier>addressLocality</dc-qualifier> - <label>City</label> - <input-type>onebox</input-type> - <hint>Enter the city of the orgunit</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationumcampus</dc-qualifier> + <repeatable>false</repeatable> + <label>U-M Campus</label> + <input-type value-pairs-name="um_campus">dropdown</input-type> + <hint> </hint> + <required>true</required> </field> </row> + <row> <field> - <dc-schema>organization</dc-schema> - <dc-element>address</dc-element> - <dc-qualifier>addressCountry</dc-qualifier> - <label>Country</label> - <input-type>onebox</input-type> - <hint>Enter the country of the orgunit</hint> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>*Title</label> + <input-type>onebox</input-type> + <hint>Enter the main title of the item. (* required)</hint> + <required>You must enter a main title for this item.</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter the description of the orgunit</hint> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Titles</label> + <input-type>onebox</input-type> + <hint>If the item has any alternate titles, please enter them.</hint> + <required></required> </field> - </row> - </form> + </row> - <!-- Form which defines the metadata page/section for depositing Journal Entities --> - <form name="journalStep"> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <label>Name</label> - <input-type>onebox</input-type> - <hint>Enter the name of the journal</hint> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>*Date of Issue</label> + <input-type>date</input-type> + <hint>Use today's date if Deep Blue is this item's first place of publication. (* YYYY required)</hint> + <required>You must enter at least the year (YYYY). Day and month are not required.</required> </field> </row> + <row> <field> - <dc-schema>creativework</dc-schema> - <dc-element>editor</dc-element> - <label>Editor</label> - <input-type>name</input-type> - <hint>Enter the editor of the journal</hint> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <dc-qualifier>ispartofseries</dc-qualifier> + <repeatable>true</repeatable> + <label>Series/Report No./Version</label> + <input-type>onebox</input-type> + <hint>Any series, number, version, or release assigned to this item.</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>creativeworkseries</dc-schema> - <dc-element>issn</dc-element> - <label>ISSN</label> - <input-type>onebox</input-type> - <hint>Enter the issn of the journal</hint> + <dc-schema>dc</dc-schema> + <dc-element>coverage</dc-element> + <dc-qualifier>spatial</dc-qualifier> + <repeatable>true</repeatable> + <label>Location</label> + <input-type>onebox</input-type> + <hint>Enter location of study (e.g. "Douglas Lake")</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter the description of the journal</hint> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>classification</dc-qualifier> + <!-- An input-type of twobox MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Environment</label> + <input-type>onebox</input-type> + <hint>Enter environment (e.g. "Northern Hardwoods")</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>creativework</dc-schema> - <dc-element>publisher</dc-element> - <label>Publisher</label> - <input-type>onebox</input-type> - <hint>Enter the publisher of the journal</hint> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of twobox MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Subject</label> + <input-type>onebox</input-type> + <hint>Enter subject here.</hint> + <required></required> </field> </row> - </form> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>other</dc-qualifier> + <!-- An input-type of twobox MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Keywords</label> + <input-type>onebox</input-type> + <hint>Enter keywords or phrases here.</hint> + <required></required> + </field> + </row> - <!-- Form which defines the metadata page/section for depositing JournalVolume Entities --> - <form name="journalVolumeStep"> <row> - <relation-field> - <relationship-type>isJournalOfVolume</relationship-type> - <search-configuration>journal</search-configuration> - <!-- example of filtering Discovery search for Journal by a specific publisher --> - <!--<filter>creativework.publisher:somepublishername</filter>--> - <label>Journal</label> - <hint>Select the journal related to this volume.</hint> - <externalsources>sherpaJournal</externalsources> - </relation-field> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Enter the abstract of the item below.</hint> + <required></required> + </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <label>Name</label> - <input-type>onebox</input-type> - <hint>Enter the name of the journal volume</hint> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>sponsorship</dc-qualifier> + <repeatable>false</repeatable> + <label>Sponsors</label> + <input-type>textarea</input-type> + <hint>The names of any sponsors and/or funding codes.</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>publicationvolume</dc-schema> - <dc-element>volumeNumber</dc-element> - <label>Volume</label> - <input-type>onebox</input-type> - <hint>Enter the volume of the journal volume</hint> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Any additional descriptive information or comments.</hint> + <required></required> </field> </row> + </form> + + <form name="traditionalpagetwo_biostation"> <row> <field> - <dc-schema>creativework</dc-schema> - <dc-element>datePublished</dc-element> - <label>Issue date</label> - <input-type>date</input-type> - <hint>Enter the issue date of the journal volume</hint> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>*Type</label> + <input-type value-pairs-name="common_types">dropdown</input-type> + <hint>To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key.</hint> + <required>Type is required</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter the description of the journal volume</hint> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint>The language of the main content. If the content does not really have a language (e.g. datasets or images) please select 'N/A'.</hint> + <required></required> </field> </row> </form> - <!-- Form which defines the metadata page/section for depositing JournalIssue Entities --> - <form name="journalIssueStep"> - <row> - <relation-field> - <relationship-type>isJournalVolumeOfIssue</relationship-type> - <search-configuration>journalvolume</search-configuration> - <label>Journal Volume</label> - <hint>Select the journal volume related to this issue.</hint> - </relation-field> + <form name="traditionalpageone_grocs"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>*Author(s)</label> + <input-type>name</input-type> + <hint>Names of the author(s) of this item. Put "Project Name" in the "Last Name" field as first author, followed by individual contributors (*required)</hint> + <required>At least one author is required.</required> + </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <label>Name</label> - <input-type>onebox</input-type> - <hint>Enter the name of the journal issue</hint> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>*Item Title</label> + <input-type>onebox</input-type> + <hint>e.g. "Exhibition Panel: Foundations" (* required)</hint> + <required>You must enter a main title for this item.</required> </field> </row> + <row> <field> - <dc-schema>publicationissue</dc-schema> - <dc-element>issueNumber</dc-element> - <label>Number</label> - <input-type>onebox</input-type> - <hint>Enter the number of the journal issue</hint> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Title(s)</label> + <input-type>onebox</input-type> + <hint>Enter other titles for the item</hint> + <required>You must enter a main title for this item.</required> </field> </row> + <row> <field> - <dc-schema>creativework</dc-schema> - <dc-element>datePublished</dc-element> - <label>Issue date</label> - <input-type>date</input-type> - <hint>Enter the issue date of the journal issue</hint> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>*Date of Issue</label> + <input-type>date</input-type> + <hint>Use April of the project's GROCS year if no specific date is attached (* YYYY required)</hint> + <required>You must enter at least the year (YYYY). Day and month are not required.</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter the description of the journal issue</hint> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>*Type</label> + <input-type value-pairs-name="common_types">dropdown</input-type> + <hint>To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key.</hint> + <required>Type is required</required> </field> </row> + <row> <field> - <dc-schema>creativework</dc-schema> - <dc-element>keywords</dc-element> - <repeatable>true</repeatable> - <label>Keywords</label> - <input-type>onebox</input-type> - <hint>Enter the keywords of the journal issue</hint> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Project Abstract</label> + <input-type>textarea</input-type> + <hint>Enter the abstract of the item below.</hint> + <required></required> </field> </row> - </form> - <!-- OpenAIRE specific forms --> - - <form name="openAIREPublicationPageoneForm"> + <form name="traditionalpagetwo_grocs"> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Title</label> - <input-type>onebox</input-type> - <hint>Enter the main title of the item.</hint> - <required>You must enter a main title for this item.</required> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>sponsorship</dc-qualifier> + <repeatable>true</repeatable> + <label>Sponsor(s)</label> + <input-type>onebox</input-type> + <hint>The names of any sponsors and/or funding codes.</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <dc-qualifier>alternative</dc-qualifier> - <repeatable>true</repeatable> - <label>Other Titles</label> - <input-type>onebox</input-type> - <hint>If the item has any alternative titles, please enter them here.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Item Description</label> + <input-type>textarea</input-type> + <hint>e.g., "One of 6 panels displayed in an exhibition at the Duderstadt Center Gallery..."</hint> + <required></required> </field> </row> - <row> - <relation-field> - <relationship-type>isAuthorOfPublication</relationship-type> - <search-configuration>personOrOrgunit</search-configuration> - <repeatable>true</repeatable> - <name-variants>true</name-variants> - <label>Author</label> - <hint>Add an author</hint> - <linked-metadata-field> - <dc-schema>dc</dc-schema> - <dc-element>contributor</dc-element> - <dc-qualifier>author</dc-qualifier> - <input-type>name</input-type> - </linked-metadata-field> - <externalsources>orcid</externalsources> - <required>At least one author (plain text or relationship) is required</required> - </relation-field> - </row> + </form> - <!-- EDITOR and Other contributors - Add new field here --> + <form name="traditionalpageone_honorsthesis"> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>date</dc-element> - <dc-qualifier>issued</dc-qualifier> - <repeatable>false</repeatable> - <label>Date of Issue</label> - <style>col-sm-4</style> - <input-type>date</input-type> - <hint>Please give the date of previous publication or public distribution. - You can leave out the day - and/or month if they aren't applicable. - </hint> - <required>You must enter at least the year.</required> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint>Thesis title, identical to how it appears on the title page</hint> + <required>Title is required</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>publisher</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Publisher</label> - <style>col-sm-8</style> - <input-type>onebox</input-type> - <hint>Enter the name of the publisher of the previously issued instance of this item.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>Student name(s)</label> + <input-type>name</input-type> + <hint>Student's names, identical to how it/they appear on the title page</hint> + <required>Author is required</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>relation</dc-element> - <dc-qualifier>hasversion</dc-qualifier> - <repeatable>false</repeatable> - <label>Editor Version</label> - <input-type>onebox</input-type> - <hint>Enter the URL/DOI of the editor version of this item.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>thesisdegreediscipline</dc-qualifier> + <repeatable>true</repeatable> + <label>Program name</label> + <input-type>onebox</input-type> + <hint>Program granting the degree</hint> + <required>Program name is required</required> </field> </row> + <row> <field> - <dc-schema>dcterms</dc-schema> - <dc-element>references</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Related Dataset</label> - <input-type>onebox</input-type> - <hint>Enter the URL/DOI of the related Dataset.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationumcampus</dc-qualifier> + <repeatable>false</repeatable> + <label>U-M Campus</label> + <input-type value-pairs-name="um_campus">dropdown</input-type> + <hint> </hint> + <required>true</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>identifier</dc-element> - <dc-qualifier></dc-qualifier> - <!-- An input-type of qualdrop_value MUST be marked as repeatable --> - <repeatable>true</repeatable> - <label>Identifiers</label> - <input-type value-pairs-name="common_identifiers">qualdrop_value</input-type> - <hint>If the item has any identification numbers or codes associated with - it, please enter the types - and the actual numbers or codes. - </hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Year degree awarded</label> + <input-type>date</input-type> + <hint>Date appearing on the title page of the thesis, dissertation, or Opus. Omit day and/or month if they don't apply.</hint> + <required>You must enter at least the year (YYYY).</required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>title</dc-qualifier> - <repeatable>false</repeatable> - <label>Title of Journal, Book or Event</label> - <input-type>onebox</input-type> - <hint>Include the name of related item like the journal name, book title or event name.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>advisor</dc-qualifier> + <repeatable>true</repeatable> + <label>Thesis Advisor/Chair</label> + <input-type>name</input-type> + <hint>Name(s) of the advisor/chair of the committee</hint> + <required>Advisor/chair is required</required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>conferencePlace</dc-qualifier> - <repeatable>false</repeatable> - <label>Event/Conference Place</label> - <input-type>onebox</input-type> - <hint>Enter the event location.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>committeemember</dc-qualifier> + <repeatable>true</repeatable> + <label>Committee Member(s)</label> + <input-type>name</input-type> + <hint>Names of the Committee Members</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>conferenceDate</dc-qualifier> - <repeatable>false</repeatable> - <label>Conference Date</label> - <input-type>date</input-type> - <hint>Enter the date of the event.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Identical to the abstract on the title page</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>volume</dc-qualifier> - <repeatable>false</repeatable> - <label>Volume</label> - <input-type>onebox</input-type> - <hint>Enter the volume of the item.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Keywords or short phrases</label> + <input-type>onebox</input-type> + <hint>Up to six keywords/short phrases describing your thesis</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>issue</dc-qualifier> - <repeatable>false</repeatable> - <label>Issue</label> - <input-type>onebox</input-type> - <hint>Enter the issue number of the item.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>other</dc-qualifier> + <repeatable>true</repeatable> + <label>Subject category</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> </field> </row> + </form> + + <form name="traditionalpagetwo_honorsthesis"> <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>edition</dc-qualifier> - <repeatable>false</repeatable> - <label>Edition</label> - <input-type>onebox</input-type> - <hint>Enter the edition of the item.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Primary language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint> </hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>startPage</dc-qualifier> - <repeatable>false</repeatable> - <label>First Page</label> - <input-type>onebox</input-type> - <hint>Enter the start page number.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>thesisdegreegrantor</dc-qualifier> + <repeatable>false</repeatable> + <label>University, degree grantor</label> + <input-type>onebox</input-type> + <hint> </hint> + <required>University, degree grantor is required</required> </field> + </row> + </form> + + + <form name="traditionalpageone_meche"> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>citation</dc-element> - <dc-qualifier>endPage</dc-qualifier> - <repeatable>false</repeatable> - <label>Last Page</label> - <input-type>onebox</input-type> - <hint>Enter the last page number.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>*Author(s)</label> + <input-type>name</input-type> + <hint>Names of the author(s) of this item. (* required)</hint> + <required>At least one author is required.</required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>type</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>true</repeatable> - <label>Type</label> - <input-type value-pairs-name="openaire_types">dropdown</input-type> - <hint>Select the type(s) of content of the item. To select more than one value in the list, you may - have to hold down the "CTRL" or "Shift" key. - </hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>orcid</dc-qualifier> + <repeatable>true</repeatable> + <label>ORCID iD</label> + <input-type>onebox</input-type> + <hint>ORCID iD(s) for author(s) of this item.</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>version</dc-element> - <repeatable>false</repeatable> - <label>Resource Version</label> - <input-type value-pairs-name="openaire_version_types">dropdown</input-type> - <hint>Select the version of the resource. If the resource does not have that information, please - select "Not Applicable (or Unknown)".</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationum</dc-qualifier> + <repeatable>true</repeatable> + <label>U-M Author Affiliation</label> + <input-type>onebox</input-type> + <hint>U-M Author's affiliation(s)</hint> + <required></required> </field> + </row> + + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>language</dc-element> - <dc-qualifier>iso</dc-qualifier> - <repeatable>false</repeatable> - <label>Language</label> - <input-type value-pairs-name="common_iso_languages">dropdown</input-type> - <hint>Select the language of the main content of the item. If the language does not appear in the - list, please select 'Other'. If the content does not really have a language (for example, if it - is a dataset or an image) please select 'N/A'. - </hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationother</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Author Affiliation</label> + <input-type>onebox</input-type> + <hint>Author's affiliation(s), non-U-M</hint> + <required></required> </field> </row> - </form> - <form name="openAIREPublicationPagetwoForm"> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>subject</dc-element> - <dc-qualifier></dc-qualifier> - <!-- An input-type of tag MUST be marked as repeatable --> - <repeatable>true</repeatable> - <label>Subject Keywords</label> - <input-type>tag</input-type> - <hint>Enter appropriate subject keywords or phrases.</hint> - <required></required> - <vocabulary>srsc</vocabulary> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>advisor</dc-qualifier> + <repeatable>true</repeatable> + <label>Instructor/Advisor</label> + <input-type>name</input-type> + <hint>U-M Instructor or Advisor (for student projects)</hint> + <required></required> </field> </row> - <!-- Additional Subject with specific taxonomy (like mesh, fos, ...) --> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>*Title</label> + <input-type>onebox</input-type> + <hint>Enter the main title of the item. (* required)</hint> + <required>You must enter a main title for this item.</required> + </field> + </row> - <!-- example for FOS --> - <!-- <row> + <row> <field> - <dc-schema>datacite</dc-schema> - <dc-element>subject</dc-element> - <dc-qualifier>fos</dc-qualifier> - <repeatable>true</repeatable> - <label>Subject Keywords (Fields of Science and Technology - OECD) </label> - <input-type>tag</input-type> - <hint>Enter appropriate subject keywords or phrases based on the defined taxonomy.</hint> - <required></required> - <vocabulary>fos</vocabulary> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Titles</label> + <input-type>onebox</input-type> + <hint>If the item has any alternate titles, please enter them.</hint> + <required></required> </field> - </row> --> + </row> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <dc-qualifier>abstract</dc-qualifier> - <repeatable>false</repeatable> - <label>Abstract</label> - <input-type>textarea</input-type> - <hint>Enter the abstract of the item.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>*Date of Issue</label> + <input-type>date</input-type> + <hint>Use today's date if Deep Blue is this item's first place of publication. (* YYYY required)</hint> + <required>You must enter at least the year (YYYY). Day and month are not required.</required> </field> </row> + <row> - <relation-field> - <relationship-type>isProjectOfPublication</relationship-type> - <search-configuration>project</search-configuration> - <repeatable>true</repeatable> - <name-variants>false</name-variants> - <label>Funding</label> - <hint>Add a related Funding</hint> - <linked-metadata-field> - <dc-schema>dc</dc-schema> - <dc-element>relation</dc-element> - <input-type>onebox</input-type> - </linked-metadata-field> - <externalsources>openAIREFunding</externalsources> - <required></required> - </relation-field> + <field> + <dc-schema>dc</dc-schema> + <dc-element>publisher</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Publisher</label> + <input-type>onebox</input-type> + <hint>Use only if previously published (e.g., in a journal).</hint> + <required></required> + </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>rights</dc-element> - <repeatable>false</repeatable> - <label>Access Type</label> - <input-type value-pairs-name="openaire_rights">dropdown</input-type> - <hint>Select the access type of the resource.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>peerreviewed</dc-qualifier> + <repeatable>false</repeatable> + <label>Peer Reviewed</label> + <input-type value-pairs-name="peer_reviewed">dropdown</input-type> + <hint>Select "Peer Reviewed" if item is peer reviewed.</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>license</dc-element> - <dc-qualifier>condition</dc-qualifier> - <repeatable>false</repeatable> - <label>License</label> - <input-type value-pairs-name="openaire_license_types">dropdown</input-type> - <hint>Select the license of the resource.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>citation</dc-qualifier> + <repeatable>false</repeatable> + <label>Citation</label> + <input-type>onebox</input-type> + <hint>The citation for this item's previous publication. (e.g. Journal of X, vol. Y, no. Z, year, pp. m-n)</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>coverage</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Coverage</label> - <input-type>onebox</input-type> - <hint>Enter the coverage of the item, like a period, jurisdiction, etc.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <dc-qualifier>ispartofseries</dc-qualifier> + <repeatable>true</repeatable> + <label>Series/Report No./Version</label> + <input-type>onebox</input-type> + <hint>Any series, number, version, or release assigned to this item.</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <dc-qualifier></dc-qualifier> - <repeatable>false</repeatable> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter any other description or comments in this box.</hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of qualdrop_value MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Identifiers</label> + <input-type value-pairs-name="common_identifiers">qualdrop_value</input-type> + <hint>If the item has identification numbers/codes associated with it, please select the type(s) and enter them.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>*Type</label> + <input-type value-pairs-name="common_types">dropdown</input-type> + <hint>To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key.</hint> + <required>Type is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>true</repeatable> + <label>Language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint>The language of the main content. If the content does not really have a language (e.g. datasets or images) please select 'N/A'. See hint above for selecting more than one language.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of twobox MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Subject Keywords</label> + <input-type>onebox</input-type> + <hint>Enter subject keywords or phrases here.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Enter the abstract of the item below.</hint> + <required></required> </field> </row> </form> - <form name="openAIREPersonForm"> + <form name="traditionalpagetwo_meche"> <row> <field> - <dc-schema>person</dc-schema> - <dc-element>familyName</dc-element> - <label>Last name</label> - <input-type>onebox</input-type> - <hint>Enter surname or last name of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>sponsorship</dc-qualifier> + <repeatable>false</repeatable> + <label>Sponsors</label> + <input-type>textarea</input-type> + <hint>The names of any sponsors and/or funding codes.</hint> + <required></required> </field> + </row> + + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>givenName</dc-element> - <label>First name</label> - <input-type>onebox</input-type> - <hint>Enter personal or first name of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <repeatable>false</repeatable> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Any additional descriptive information or comments.</hint> + <required></required> </field> </row> + </form> + + + <form name="traditionalpageone_paleo"> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <label>Author preferred name</label> - <input-type>onebox</input-type> - <hint>Enter the preferred name of this person regarding the authorship</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>Author(s)</label> + <input-type>name</input-type> + <hint>Names of the author(s) of this item. (* required)</hint> + <required>At least one author is required.</required> </field> </row> + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>affiliation</dc-element> - <dc-qualifier>name</dc-qualifier> - <repeatable>true</repeatable> - <label>Affiliation Name</label> - <input-type>onebox</input-type> - <hint>Enter the organizational or institutional affiliation of this person</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationum</dc-qualifier> + <repeatable>true</repeatable> + <label>U-M Author's Affiliation</label> + <input-type>onebox</input-type> + <hint>U-M Author's Affiliation (e.g. Museum of Paleontology, University of Michigan)</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>email</dc-element> - <repeatable>true</repeatable> - <label>Email</label> - <input-type>onebox</input-type> - <hint>Enter the email of the person</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationother</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Authors' Affiliation</label> + <input-type>onebox</input-type> + <hint>Other Authors' Affiliation</hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>person</dc-schema> - <dc-element>identifier</dc-element> - <dc-qualifier></dc-qualifier> - <!-- An input-type of qualdrop_value MUST be marked as repeatable --> - <repeatable>true</repeatable> - <label>Author identifier</label> - <input-type value-pairs-name="openaire_author_identifier_types">qualdrop_value</input-type> - <hint>If the author has any identifiers or codes associated with - it, please enter the types and the actual numbers or codes. - </hint> - <required></required> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint>Enter the main title of the item. (* required)</hint> + <required>You must enter a main title for this item.</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Date of Issue</label> + <input-type>date</input-type> + <hint>Use today's date if Deep Blue is this item's first place of publication. (* YYYY required)</hint> + <required>You must enter at least the year (YYYY). Day and month are not required.</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>peerreviewed</dc-qualifier> + <repeatable>false</repeatable> + <label>Peer Reviewed</label> + <input-type value-pairs-name="peer_reviewed">dropdown</input-type> + <hint>Select "Peer Reviewed" if item is peer reviewed.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>citation</dc-qualifier> + <repeatable>false</repeatable> + <label>Volume/No.</label> + <input-type>onebox</input-type> + <hint>Enter in the form "Vol. X, No. Y"</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <dc-qualifier>ispartofseries</dc-qualifier> + <repeatable>true</repeatable> + <label>Category</label> + <input-type value-pairs-name="paleo_category">dropdown</input-type> + <hint>The series this publication belongs to</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable></repeatable> + <label>Product ID/Order No.</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>format</dc-element> + <dc-qualifier>extent</dc-qualifier> + <repeatable>false</repeatable> + <label>Pages</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> </field> </row> </form> - <form name="openAIREProjectForm"> + <form name="traditionalpagetwo_paleo"> <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>title</dc-element> - <label>Project name</label> - <input-type>onebox</input-type> - <hint>Enter the name of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>other</dc-qualifier> + <repeatable>false</repeatable> + <label> Sys. No.</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> </field> </row> + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>identifier</dc-element> - <dc-qualifier>uri</dc-qualifier> - <label>Project web page</label> - <input-type>onebox</input-type> - <hint>Enter the URL of the project webpage</hint> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>*Type</label> + <input-type value-pairs-name="common_types">dropdown</input-type> + <hint>To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key.</hint> + <required>Type is required</required> </field> </row> + </form> + + <form name="traditionalpageone_busadwp"> <row> - <relation-field> - <relationship-type>isFundingAgencyOfProject</relationship-type> - <search-configuration>openAIREFundingAgency</search-configuration> - <repeatable>false</repeatable> - <name-variants>false</name-variants> - <label>Funding Agency</label> - <hint>Add a Funding Agency</hint> - <linked-metadata-field> - <dc-schema>project</dc-schema> - <dc-element>funder</dc-element> - <dc-qualifier>name</dc-qualifier> - <input-type>onebox</input-type> - </linked-metadata-field> - <externalsources></externalsources> - <required>One funding agency is required</required> - </relation-field> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>U-M Author</label> + <input-type>name</input-type> + <hint>Req'd: List U-M authors in the order they are listed on the document</hint> + <required>Author is required</required> + </field> </row> + <row> <field> - <dc-schema>oaire</dc-schema> - <dc-element>fundingStream</dc-element> - <label>Name of the Funding Stream</label> - <input-type>onebox</input-type> - <hint>Enter the name of the funding stream of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>orcid</dc-qualifier> + <repeatable>true</repeatable> + <label>ORCID iD</label> + <input-type>onebox</input-type> + <hint>ORCID iD(s) for author(s) of this item.</hint> + <required></required> </field> + </row> + + <row> <field> - <dc-schema>dc</dc-schema> - <dc-element>identifier</dc-element> - <label>Award number</label> - <input-type>onebox</input-type> - <hint>Enter the identifier of the project</hint> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationum</dc-qualifier> + <repeatable>true</repeatable> + <label>U-M Author's Affiliation</label> + <input-type>onebox</input-type> + <hint>Enter U-M affiliation</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Other Authors</label> + <input-type>name</input-type> + <hint>Enter personal names in the format 'LastName, FirstName'. Also enter corporate or conference bodies that contribute to the content or development of this work.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationother</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Author's Affiliation</label> + <input-type>onebox</input-type> + <hint>Enter non-Ross author affiliations, if they apply.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint>Req'd: Enter title exactly as it appears on the cover or title page</hint> + <required>Title is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Alternative Titles</label> + <input-type>onebox</input-type> + <hint>Enter additional or variant titles you think will be useful</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Req'd</hint> + <required>Abstract is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>classification</dc-qualifier> + <repeatable>true</repeatable> + <label>Department</label> + <input-type value-pairs-name="busadwp_department_types">dropdown</input-type> + <hint>Select primary Ross School of Business affiliation</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Keyword</label> + <input-type>onebox</input-type> + <hint>Req'd: Enter ONE word or phrase per text box, up to 9 keyword fields</hint> + <required>Three keywords are required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Working Paper No.</label> + <input-type>onebox</input-type> + <hint>Working Paper number</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Date of Issue</label> + <input-type>date</input-type> + <hint>Req'd: Please give the date of previous publication or public distribution below. You can leave out the day and/or month if they aren't applicable.</hint> + <required>You must enter at least the year (YYYY).</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>hlbsecondlevel</dc-qualifier> + <repeatable>true</repeatable> + <label>Deep Blue Subject</label> + <input-type value-pairs-name="ross_second_level">dropdown</input-type> + <hint>Specific subject for Deep Blue's browse function</hint> + <required></required> </field> </row> </form> - <form name="openAIREOrganizationForm"> - <row> - <field> - <dc-schema>organization</dc-schema> - <dc-element>legalName</dc-element> - <label>Organization name</label> - <input-type>onebox</input-type> - <hint>Enter the name of the orgunit or organization</hint> - </field> - </row> - <row> - <field> - <dc-schema>organization</dc-schema> - <dc-element>identifier</dc-element> - <dc-qualifier></dc-qualifier> - <!-- An input-type of qualdrop_value MUST be marked as repeatable --> - <repeatable>true</repeatable> - <label>Organization identifier</label> - <input-type value-pairs-name="openaire_organization_identifier_types">qualdrop_value</input-type> - <hint>If the organization has any identifiers or codes associated with - it, please enter the types and the actual numbers or codes. - </hint> - <required></required> - </field> - </row> - <row> - <field> - <dc-schema>dc</dc-schema> - <dc-element>type</dc-element> - <label>Organization type</label> - <input-type value-pairs-name="openaire_organization_types">dropdown</input-type> - <hint>Choose the attributes of the Organization</hint> - <required></required> - </field> - </row> - <row> - <field> - <dc-schema>dc</dc-schema> - <dc-element>description</dc-element> - <label>Description</label> - <input-type>textarea</input-type> - <hint>Enter the description of the orgunit</hint> - </field> - </row> - </form> + <form name="traditionalpagetwo_busadwp"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>publisher</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Publisher</label> + <input-type>onebox</input-type> + <hint>Req'd: Enter the name of the publisher of the previously issued instance of this item.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>citation</dc-qualifier> + <repeatable>false</repeatable> + <label>Citation</label> + <input-type>onebox</input-type> + <hint>Enter the standard citation for the previously issued instance of this item.</hint> + <required></required> + </field> + </row> + </form> + + <form name="traditionalpageone_ipc"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint>Title of your paper (required)</hint> + <required>Title is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>Author</label> + <input-type>name</input-type> + <hint>Author name(s)</hint> + <required>At least one author is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>orcid</dc-qualifier> + <repeatable>true</repeatable> + <label>ORCID iD</label> + <input-type>onebox</input-type> + <hint>ORCID iD(s) for author(s) of this item.</hint> + <required></required> + </field> + </row> + +<!-- prepopulate with "Public Policy, Gerald R. Ford School of" --> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationum</dc-qualifier> + <repeatable>true</repeatable> + <label>Author Affiliation</label> + <input-type>onebox</input-type> + <hint>Authors' affiliation(s)</hint> + <required>At least one U-M college/school affiliation is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationother</dc-qualifier> + <repeatable>true</repeatable> + <label>Author Affiliation (non-U-M)</label> + <input-type>onebox</input-type> + <hint>non-U-M Authors' affiliation(s)</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Date</label> + <input-type>date</input-type> + <hint>The date appearing on the working paper</hint> + <required>You must enter at least the year (YYYY).</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>other</dc-qualifier> + <repeatable>true</repeatable> + <label>JEL Classification(s)</label> + <input-type>onebox</input-type> + <hint>JEL classification number</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <dc-qualifier>ispartofseries</dc-qualifier> + <repeatable>true</repeatable> + <label>Working Paper Series No.</label> + <input-type>onebox</input-type> + <hint>IPC Working Paper Series No.</hint> + <required></required> + </field> + </row> + </form> + + <form name="traditionalpagetwo_ipc"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Keywords</label> + <input-type>onebox</input-type> + <hint> </hint> + <required>At least one keyword is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Primary language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint> </hint> + <required></required> + </field> + </row> + </form> + + <form name="traditionalpageone_thesis"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint>Thesis, Dissertation, or Opus title, identical to how it appears on the title page</hint> + <required>Title is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>Student name(s)</label> + <input-type>name</input-type> + <hint>Student's names, identical to how it/they appear on the title page</hint> + <required>Author is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>uniqname</dc-qualifier> + <repeatable>true</repeatable> + <label>EmplID or uniqname</label> + <input-type>onebox</input-type> + <hint>Student's EmplID (e.g. 1234 5678) or uniqname</hint> + <required>At least one student EmplID or uniqname is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>orcid</dc-qualifier> + <repeatable>true</repeatable> + <label>ORCID iD</label> + <input-type>onebox</input-type> + <hint>ORCID iD(s) for author(s) of this item.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>thesisdegreename</dc-qualifier> + <repeatable>false</repeatable> + <label>Degree awarded</label> + <input-type value-pairs-name="thesis_degree">dropdown</input-type> + <hint> </hint> + <required>Degree is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Type</label> + <input-type value-pairs-name="dissertation_type">dropdown</input-type> + <hint></hint> + <required>Type is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>thesisdegreediscipline</dc-qualifier> + <repeatable>true</repeatable> + <label>Program name</label> + <input-type>onebox</input-type> + <hint>Program granting the degree</hint> + <required>Program name is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Year degree awarded</label> + <input-type>date</input-type> + <hint>Date appearing on the title page of the thesis, dissertation, or Opus. Omit day and/or month if they don't apply.</hint> + <required>You must enter at least the year (YYYY).</required> + </field> + </row> + +<!-- IS "degree awarded date" IDENTICAL TO "thesis title page" DATE? --> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>submitted</dc-qualifier> + <repeatable>false</repeatable> + <label>Year manuscript completed</label> + <input-type>date</input-type> + <hint>Date the manuscript was completed. Omit day and/or month if they don't apply.</hint> + <required>You must enter at least the year (YYYY).</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>advisor</dc-qualifier> + <repeatable>true</repeatable> + <label>Thesis Advisor/Chair</label> + <input-type>name</input-type> + <hint>Name(s) of the advisor/chair of the committee</hint> + <required>Advisor/chair is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>committeemember</dc-qualifier> + <repeatable>true</repeatable> + <label>Committee Member(s)</label> + <input-type>name</input-type> + <hint>Names of the Committee Members</hint> + <required>Committee Members are required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Exactly as it appears in the dissertation</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Keywords or short phrases</label> + <input-type>onebox</input-type> + <hint>Up to six keywords/short phrases describing your thesis</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>other</dc-qualifier> + <repeatable>true</repeatable> + <label>Subject category</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Primary language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>thesisdegreegrantor</dc-qualifier> + <repeatable>false</repeatable> + <label>University, degree grantor</label> + <input-type>onebox</input-type> + <hint> </hint> + <required>University, degree grantor is required</required> + </field> + </row> + </form> + + <form name="traditionalpagetwo_thesis"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>available</dc-qualifier> + <repeatable>false</repeatable> + <label>Date thesis is available</label> + <input-type value-pairs-name="embargo">dropdown</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>mapping</dc-qualifier> + <repeatable>true</repeatable> + <label>Display in Other Collections</label> + <input-type value-pairs-name="collection_mappings">dropdown</input-type> + <hint>If you are also a depositor in another collection and you'd like to associate your work with it, you may select the collection(s) here (e.g. a thesis may be added to the general thesis collection as well as appear in the relevant departmental collection(s) ). This box will be blank if you are not a depositor in other collections</hint> + <required></required> + </field> + </row> + </form> + + <form name="traditionalpageone_umtri"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Accession Number</label> + <input-type>onebox</input-type> + <hint>Enter as "Accession Number: XXXXX" -- required for UMTRI reports.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>other</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Identifiers</label> + <input-type>onebox</input-type> + <hint>Other refers to Report, Contract, Order, Grant, or Project Number.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>Author(s)</label> + <input-type>name</input-type> + <hint>Enter as "Last name, First name"</hint> + <required>Author is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>orcid</dc-qualifier> + <repeatable>true</repeatable> + <label>ORCID iD</label> + <input-type>onebox</input-type> + <hint>ORCID iD(s) for author(s) of this item.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Other Collaborators</label> + <input-type>onebox</input-type> + <hint>Other Collaborators refers to Corporate, Source, or Conference.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint> </hint> + <required>Title is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Alternative Titles</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Date of Issue</label> + <input-type>date</input-type> + <hint>Please give the date of previous publication or public distribution + below. You can leave out the day and/or month if they aren't + applicable.</hint> + <required>You must enter at least the year (YYYY).</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint> Enter the abstract of the item below. </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>publisher</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Publisher</label> + <input-type>onebox</input-type> + <hint>Enter the name of the publisher of the previously issued instance of this item.</hint> + <required>Publisher is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>citation</dc-qualifier> + <repeatable>false</repeatable> + <label>Citation</label> + <input-type>onebox</input-type> + <hint>Enter the standard citation for the previously issued instance of this item.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>format</dc-element> + <dc-qualifier>extent</dc-qualifier> + <repeatable>false</repeatable> + <label>Pages</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>format</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Physical Description</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <dc-qualifier>ispartofseries</dc-qualifier> + <repeatable>true</repeatable> + <label>Series</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>sponsorship</dc-qualifier> + <repeatable>true</repeatable> + <label>Sponsor</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Description</label> + <input-type>onebox</input-type> + <hint>Enter Notes, Full text, Journal, and Reference information.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Personal or Corporate Subject</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>other</dc-qualifier> + <repeatable>true</repeatable> + <label>Subject</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label> Primary Language</label> + <input-type>onebox</input-type> + <hint> </hint> + <required></required> + </field> + </row> + </form> + + <form name="traditionalpagetwo_umtri"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>available</dc-qualifier> + <repeatable>false</repeatable> + <label>Date report is available</label> + <input-type value-pairs-name="embargo">dropdown</input-type> + <hint> </hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>mapping</dc-qualifier> + <repeatable>true</repeatable> + <label>Display in Other Collections</label> + <input-type value-pairs-name="collection_mappings">dropdown</input-type> + <hint>If you are also a depositor in another collection and you'd like to associate your work with it, you may select the collection(s) here (e.g. a thesis may be added to the general thesis collection as well as appear in the relevant departmental collection(s) ). This box will be blank if you are not a depositor in other collections</hint> + <required></required> + </field> + </row> + </form> + + <form name="traditionalpageone_rossseniorthesis"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <repeatable>true</repeatable> + <label>*Author(s)</label> + <input-type>onebox</input-type> + <hint>Names of the author(s) of this item. (* required)</hint> + <required>At least one author is required.</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>orcid</dc-qualifier> + <repeatable>true</repeatable> + <label>ORCID iD</label> + <input-type>onebox</input-type> + <hint>ORCID iD(s) for author(s) of this item.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>affiliationum</dc-qualifier> + <repeatable>true</repeatable> + <label>U-M Author Affiliation</label> + <input-type>onebox</input-type> + <hint>U-M Author's affiliation(s)</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>advisor</dc-qualifier> + <repeatable>true</repeatable> + <label>*Advisor(s)</label> + <input-type>onebox</input-type> + <hint>Advisor is required</hint> + <required>true</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>*Title</label> + <input-type>onebox</input-type> + <hint>Enter the main title of the item. (* required)</hint> + <required>You must enter a main title for this item.</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Course Name and number</label> + <input-type>onebox</input-type> + <hint>Course number (e.g. BA 380, BA 480)</hint> + <required>Course number is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>*Date of Issue</label> + <input-type>date</input-type> + <hint>Use today's date if Deep Blue is this item's first place of publication. (* YYYY required)</hint> + <required>You must enter at least the year (YYYY). Day and month are not required.</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>*Type</label> + <input-type value-pairs-name="common_types">dropdown</input-type> + <hint>To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key.</hint> + <required>Type is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint>The language of the main content. If the content does not really have a language (e.g. datasets or images) please select 'N/A'.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>classification</dc-qualifier> + <repeatable>true</repeatable> + <label>*Department</label> + <input-type value-pairs-name="busadwp_department_types">dropdown</input-type> + <hint>Primary Ross School of Business department affiliation</hint> + <required>Department is required</required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of twobox MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Subject Keywords</label> + <input-type>onebox</input-type> + <hint>Enter subject keywords or phrases here.</hint> + <required></required> + </field> + </row> + </form> + + <form name="traditionalpagetwo_rossseniorthesis"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Enter the abstract of the item below.</hint> + <required></required> + </field> + </row> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Any additional descriptive information or comments.</hint> + <required></required> + </field> + </row> + </form> + +<!-- End UM Specific --> + + <!-- Form which defines the second page/section of the "traditional" DSpace submission process, + often used when depositing normal Items. --> + <form name="traditionalpagetwo"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of tag MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Subject Keywords</label> + <input-type>tag</input-type> + <hint>Enter appropriate subject keywords or phrases.</hint> + <required></required> + <vocabulary>srsc</vocabulary> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Enter the abstract of the item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>sponsorship</dc-qualifier> + <repeatable>false</repeatable> + <label>Sponsors</label> + <input-type>textarea</input-type> + <hint>Enter the names of any sponsors and/or funding codes in the box.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter any other description or comments in this box.</hint> + <required></required> + </field> + </row> + </form> + + + <!-- Form which defines the *first* metadata page/section for depositing Publication Entities. + Since Publication Entities are very similar to normal Items, this is nearly identical to the + 'traditionalpageone' form. The only difference is the Author field can be used to link the + Publication Entity to a Person Entity. --> + <form name="publicationStep"> + <row> + <relation-field> + <relationship-type>isAuthorOfPublication</relationship-type> + <search-configuration>person</search-configuration> + <repeatable>true</repeatable> + <label>Author</label> + <hint>Enter the author's name (Family name, Given names).</hint> + <linked-metadata-field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <input-type>onebox</input-type> + </linked-metadata-field> + <externalsources>orcid</externalsources> + <required></required> + <!-- You may choose to validate author names via a Regular Expression if it's appropriate for + your institution. The below regex requires a comma to be present in the author field. + However, this is disabled by default to support organizations as authors, etc. --> + <!--<regex>\w+(,)+\w+</regex>--> + </relation-field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint>Enter the main title of the item.</hint> + <required>You must enter a main title for this item.</required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Titles</label> + <input-type>onebox</input-type> + <hint>If the item has any alternative titles, please enter them here.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Date of Issue</label> + <style>col-sm-4</style> + <input-type>date</input-type> + <hint>Please give the date of previous publication or public distribution. + You can leave out the day and/or month if they aren't applicable. + </hint> + <required>You must enter at least the year.</required> + </field> + + <field> + <dc-schema>dc</dc-schema> + <dc-element>publisher</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Publisher</label> + <style>col-sm-8</style> + <input-type>onebox</input-type> + <hint>Enter the name of the publisher of the previously issued instance of this item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>citation</dc-qualifier> + <repeatable>false</repeatable> + <label>Citation</label> + <input-type>onebox</input-type> + <hint>Enter the standard citation for the previously issued instance of this item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <dc-qualifier>ispartofseries</dc-qualifier> + <repeatable>true</repeatable> + <label>Series/Report No.</label> + <input-type>series</input-type> + <hint>Enter the series and number assigned to this item by your community.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of qualdrop_value MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Identifiers</label> + <input-type value-pairs-name="common_identifiers">qualdrop_value</input-type> + <hint>If the item has any identification numbers or codes associated with + it, please enter the types and the actual numbers or codes. + </hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Type</label> + <input-type value-pairs-name="common_types">dropdown</input-type> + <hint>Select the type(s) of content of the item. To select more than one value in the list, you may + have to hold down the "CTRL" or "Shift" key. + </hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint>Select the language of the main content of the item. If the language does not appear in the + list, please select 'Other'. If the content does not really have a language (for example, if it + is a dataset or an image) please select 'N/A'. + </hint> + <required></required> + </field> + </row> + </form> + + <!-- Form which defines the metadata page/section for depositing Person Entities --> + <form name="personStep"> + <row> + <relation-field> + <relationship-type>isPublicationOfAuthor</relationship-type> + <search-configuration>publication</search-configuration> + <label>Publication</label> + <hint>import a publicaton</hint> + <externalsources>pubmed</externalsources> + </relation-field> + </row> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>familyName</dc-element> + <label>Last name</label> + <input-type>onebox</input-type> + <hint>Enter the last name of the person</hint> + </field> + </row> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>givenName</dc-element> + <label>First name</label> + <input-type>onebox</input-type> + <hint>Enter the first name of the person</hint> + </field> + </row> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>email</dc-element> + <label>Email</label> + <input-type>onebox</input-type> + <hint>Enter the email of the person</hint> + </field> + </row> + <!-- <row>--> + <!-- <field>--> + <!-- <dc-schema>person</dc-schema>--> + <!-- <dc-element>identifier</dc-element>--> + <!-- <dc-qualifier>orcid</dc-qualifier>--> + <!-- <label>Orcid</label>--> + <!-- <input-type>onebox</input-type>--> + <!-- <hint>Enter the orcid of the person</hint>--> + <!-- </field>--> + <!-- </row>--> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>birthDate</dc-element> + <label>Birth date</label> + <input-type>date</input-type> + <hint>Enter the birth date of the person</hint> + </field> + </row> +<!-- <row>--> +<!-- <field>--> +<!-- <dc-schema>person</dc-schema>--> +<!-- <dc-element>identifier</dc-element>--> +<!-- <dc-qualifier>staffid</dc-qualifier>--> +<!-- <label>Staff ID</label>--> +<!-- <input-type>onebox</input-type>--> +<!-- <hint>Enter the staff id of the person</hint>--> +<!-- </field>--> +<!-- </row>--> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>jobTitle</dc-element> + <label>Job title</label> + <input-type>onebox</input-type> + <hint>Enter the job title of the person</hint> + </field> + </row> + </form> + + <!-- Form which defines the metadata page/section for depositing Project Entities --> + <form name="projectStep"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <label>Name</label> + <input-type>onebox</input-type> + <hint>Enter the name of the project</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <label>ID</label> + <input-type>onebox</input-type> + <hint>Enter the id of the project</hint> + </field> + </row> +<!-- <row>--> +<!-- <field>--> +<!-- <dc-schema>project</dc-schema>--> +<!-- <dc-element>identifier</dc-element>--> +<!-- <dc-qualifier>status</dc-qualifier>--> +<!-- <label>Status</label>--> +<!-- <input-type value-pairs-name="project_status">dropdown</input-type>--> +<!-- <hint>Enter the status of the project</hint>--> +<!-- </field>--> +<!-- </row>--> +<!-- <row>--> +<!-- <field>--> +<!-- <dc-schema>project</dc-schema>--> +<!-- <dc-element>identifier</dc-element>--> +<!-- <dc-qualifier>startdate</dc-qualifier>--> +<!-- <label>Start date</label>--> +<!-- <input-type>date</input-type>--> +<!-- <hint>Enter the start date of the project</hint>--> +<!-- </field>--> +<!-- </row>--> +<!-- <row>--> +<!-- <field>--> +<!-- <dc-schema>project</dc-schema>--> +<!-- <dc-element>identifier</dc-element>--> +<!-- <dc-qualifier>expectedcompletion</dc-qualifier>--> +<!-- <label>Expected Completion</label>--> +<!-- <input-type>date</input-type>--> +<!-- <hint>Enter the expected completion date of the project</hint>--> +<!-- </field>--> +<!-- </row>--> + <row> + <relation-field> + <relationship-type>isProjectOfPerson</relationship-type> + <search-configuration>person</search-configuration> + <repeatable>true</repeatable> + <label>Investigator</label> + <hint>Enter the investigator's name (Family name, Given names).</hint> + <linked-metadata-field> + <dc-schema>project</dc-schema> + <dc-element>investigator</dc-element> + <input-type>onebox</input-type> + </linked-metadata-field> + <externalsources>orcid</externalsources> + </relation-field> + </row> + <row> + <relation-field> + <relationship-type>isProjectOfOrgUnit</relationship-type> + <search-configuration>orgunit</search-configuration> + <repeatable>false</repeatable> + <label>Organization</label> + <hint>Enter the organization's name</hint> + <linked-metadata-field> + <dc-schema>project</dc-schema> + <dc-element>funder</dc-element> + <dc-qualifier>name</dc-qualifier> + <input-type>onebox</input-type> + </linked-metadata-field> + <externalsources/> + </relation-field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <repeatable>true</repeatable> + <label>Keywords</label> + <input-type>onebox</input-type> + <hint>Enter the keywords of the project</hint> + </field> + </row> + <row> + <field> + <dc-schema>project</dc-schema> + <dc-element>startDate</dc-element> + <label>Start date</label> + <input-type>date</input-type> + <hint>Enter the start date of the project</hint> + </field> + <field> + <dc-schema>project</dc-schema> + <dc-element>endDate</dc-element> + <label>End date</label> + <input-type>date</input-type> + <hint>Enter the end date of the project</hint> + </field> + </row> + <row> + <field> + <dc-schema>project</dc-schema> + <dc-element>amount</dc-element> + <label>Amount</label> + <input-type>onebox</input-type> + <hint>Enter the amount of the project</hint> + </field> + <field> + <dc-schema>project</dc-schema> + <dc-element>amount</dc-element> + <dc-qualifier>currency</dc-qualifier> + <label>Amount currency</label> + <input-type>onebox</input-type> + <hint>Enter the amount currency of the project</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter the description of the project</hint> + </field> + </row> + </form> + + <!-- Form which defines the metadata page/section for depositing OrgUnit Entities --> + <form name="orgUnitStep"> + <row> + <field> + <dc-schema>organization</dc-schema> + <dc-element>legalName</dc-element> + <label>Name</label> + <input-type>onebox</input-type> + <hint>Enter the name of the orgunit</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <label>ID</label> + <input-type>onebox</input-type> + <hint>Enter the id of the orgunit</hint> + </field> + </row> + <row> + <field> + <dc-schema>organization</dc-schema> + <dc-element>foundingDate</dc-element> + <label>Date established</label> + <input-type>date</input-type> + <hint>Enter the established date of the orgunit</hint> + </field> + </row> + <row> + <field> + <dc-schema>organization</dc-schema> + <dc-element>address</dc-element> + <dc-qualifier>addressLocality</dc-qualifier> + <label>City</label> + <input-type>onebox</input-type> + <hint>Enter the city of the orgunit</hint> + </field> + </row> + <row> + <field> + <dc-schema>organization</dc-schema> + <dc-element>address</dc-element> + <dc-qualifier>addressCountry</dc-qualifier> + <label>Country</label> + <input-type>onebox</input-type> + <hint>Enter the country of the orgunit</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter the description of the orgunit</hint> + </field> + </row> + </form> + + <!-- Form which defines the metadata page/section for depositing Journal Entities --> + <form name="journalStep"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <label>Name</label> + <input-type>onebox</input-type> + <hint>Enter the name of the journal</hint> + </field> + </row> + <row> + <field> + <dc-schema>creativework</dc-schema> + <dc-element>editor</dc-element> + <label>Editor</label> + <input-type>name</input-type> + <hint>Enter the editor of the journal</hint> + </field> + </row> + <row> + <field> + <dc-schema>creativeworkseries</dc-schema> + <dc-element>issn</dc-element> + <label>ISSN</label> + <input-type>onebox</input-type> + <hint>Enter the issn of the journal</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter the description of the journal</hint> + </field> + </row> + <row> + <field> + <dc-schema>creativework</dc-schema> + <dc-element>publisher</dc-element> + <label>Publisher</label> + <input-type>onebox</input-type> + <hint>Enter the publisher of the journal</hint> + </field> + </row> + + </form> + + <!-- Form which defines the metadata page/section for depositing JournalVolume Entities --> + <form name="journalVolumeStep"> + <row> + <relation-field> + <relationship-type>isJournalOfVolume</relationship-type> + <search-configuration>journal</search-configuration> + <!-- example of filtering Discovery search for Journal by a specific publisher --> + <!--<filter>creativework.publisher:somepublishername</filter>--> + <label>Journal</label> + <hint>Select the journal related to this volume.</hint> + <externalsources>sherpaJournal</externalsources> + </relation-field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <label>Name</label> + <input-type>onebox</input-type> + <hint>Enter the name of the journal volume</hint> + </field> + </row> + <row> + <field> + <dc-schema>publicationvolume</dc-schema> + <dc-element>volumeNumber</dc-element> + <label>Volume</label> + <input-type>onebox</input-type> + <hint>Enter the volume of the journal volume</hint> + </field> + </row> + <row> + <field> + <dc-schema>creativework</dc-schema> + <dc-element>datePublished</dc-element> + <label>Issue date</label> + <input-type>date</input-type> + <hint>Enter the issue date of the journal volume</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter the description of the journal volume</hint> + </field> + </row> + </form> + + <!-- Form which defines the metadata page/section for depositing JournalIssue Entities --> + <form name="journalIssueStep"> + <row> + <relation-field> + <relationship-type>isJournalVolumeOfIssue</relationship-type> + <search-configuration>journalvolume</search-configuration> + <label>Journal Volume</label> + <hint>Select the journal volume related to this issue.</hint> + </relation-field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <label>Name</label> + <input-type>onebox</input-type> + <hint>Enter the name of the journal issue</hint> + </field> + </row> + <row> + <field> + <dc-schema>publicationissue</dc-schema> + <dc-element>issueNumber</dc-element> + <label>Number</label> + <input-type>onebox</input-type> + <hint>Enter the number of the journal issue</hint> + </field> + </row> + <row> + <field> + <dc-schema>creativework</dc-schema> + <dc-element>datePublished</dc-element> + <label>Issue date</label> + <input-type>date</input-type> + <hint>Enter the issue date of the journal issue</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter the description of the journal issue</hint> + </field> + </row> + <row> + <field> + <dc-schema>creativework</dc-schema> + <dc-element>keywords</dc-element> + <repeatable>true</repeatable> + <label>Keywords</label> + <input-type>onebox</input-type> + <hint>Enter the keywords of the journal issue</hint> + </field> + </row> + + </form> + + <!-- OpenAIRE specific forms --> + + <form name="openAIREPublicationPageoneForm"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Title</label> + <input-type>onebox</input-type> + <hint>Enter the main title of the item.</hint> + <required>You must enter a main title for this item.</required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <dc-qualifier>alternative</dc-qualifier> + <repeatable>true</repeatable> + <label>Other Titles</label> + <input-type>onebox</input-type> + <hint>If the item has any alternative titles, please enter them here.</hint> + <required></required> + </field> + </row> + <row> + <relation-field> + <relationship-type>isAuthorOfPublication</relationship-type> + <search-configuration>personOrOrgunit</search-configuration> + <repeatable>true</repeatable> + <name-variants>true</name-variants> + <label>Author</label> + <hint>Add an author</hint> + <linked-metadata-field> + <dc-schema>dc</dc-schema> + <dc-element>contributor</dc-element> + <dc-qualifier>author</dc-qualifier> + <input-type>name</input-type> + </linked-metadata-field> + <externalsources>orcid</externalsources> + <required>At least one author (plain text or relationship) is required</required> + </relation-field> + </row> + + <!-- EDITOR and Other contributors - Add new field here --> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>date</dc-element> + <dc-qualifier>issued</dc-qualifier> + <repeatable>false</repeatable> + <label>Date of Issue</label> + <style>col-sm-4</style> + <input-type>date</input-type> + <hint>Please give the date of previous publication or public distribution. + You can leave out the day + and/or month if they aren't applicable. + </hint> + <required>You must enter at least the year.</required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>publisher</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Publisher</label> + <style>col-sm-8</style> + <input-type>onebox</input-type> + <hint>Enter the name of the publisher of the previously issued instance of this item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <dc-qualifier>hasversion</dc-qualifier> + <repeatable>false</repeatable> + <label>Editor Version</label> + <input-type>onebox</input-type> + <hint>Enter the URL/DOI of the editor version of this item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dcterms</dc-schema> + <dc-element>references</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Related Dataset</label> + <input-type>onebox</input-type> + <hint>Enter the URL/DOI of the related Dataset.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of qualdrop_value MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Identifiers</label> + <input-type value-pairs-name="common_identifiers">qualdrop_value</input-type> + <hint>If the item has any identification numbers or codes associated with + it, please enter the types + and the actual numbers or codes. + </hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>title</dc-qualifier> + <repeatable>false</repeatable> + <label>Title of Journal, Book or Event</label> + <input-type>onebox</input-type> + <hint>Include the name of related item like the journal name, book title or event name.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>conferencePlace</dc-qualifier> + <repeatable>false</repeatable> + <label>Event/Conference Place</label> + <input-type>onebox</input-type> + <hint>Enter the event location.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>conferenceDate</dc-qualifier> + <repeatable>false</repeatable> + <label>Conference Date</label> + <input-type>date</input-type> + <hint>Enter the date of the event.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>volume</dc-qualifier> + <repeatable>false</repeatable> + <label>Volume</label> + <input-type>onebox</input-type> + <hint>Enter the volume of the item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>issue</dc-qualifier> + <repeatable>false</repeatable> + <label>Issue</label> + <input-type>onebox</input-type> + <hint>Enter the issue number of the item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>edition</dc-qualifier> + <repeatable>false</repeatable> + <label>Edition</label> + <input-type>onebox</input-type> + <hint>Enter the edition of the item.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>startPage</dc-qualifier> + <repeatable>false</repeatable> + <label>First Page</label> + <input-type>onebox</input-type> + <hint>Enter the start page number.</hint> + <required></required> + </field> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>citation</dc-element> + <dc-qualifier>endPage</dc-qualifier> + <repeatable>false</repeatable> + <label>Last Page</label> + <input-type>onebox</input-type> + <hint>Enter the last page number.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>true</repeatable> + <label>Type</label> + <input-type value-pairs-name="openaire_types">dropdown</input-type> + <hint>Select the type(s) of content of the item. To select more than one value in the list, you may + have to hold down the "CTRL" or "Shift" key. + </hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>version</dc-element> + <repeatable>false</repeatable> + <label>Resource Version</label> + <input-type value-pairs-name="openaire_version_types">dropdown</input-type> + <hint>Select the version of the resource. If the resource does not have that information, please + select "Not Applicable (or Unknown)".</hint> + <required></required> + </field> + <field> + <dc-schema>dc</dc-schema> + <dc-element>language</dc-element> + <dc-qualifier>iso</dc-qualifier> + <repeatable>false</repeatable> + <label>Language</label> + <input-type value-pairs-name="common_iso_languages">dropdown</input-type> + <hint>Select the language of the main content of the item. If the language does not appear in the + list, please select 'Other'. If the content does not really have a language (for example, if it + is a dataset or an image) please select 'N/A'. + </hint> + <required></required> + </field> + </row> + </form> + + <form name="openAIREPublicationPagetwoForm"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of tag MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Subject Keywords</label> + <input-type>tag</input-type> + <hint>Enter appropriate subject keywords or phrases.</hint> + <required></required> + <vocabulary>srsc</vocabulary> + </field> + </row> + + <!-- Additional Subject with specific taxonomy (like mesh, fos, ...) --> + + <!-- example for FOS --> + <!-- <row> + <field> + <dc-schema>datacite</dc-schema> + <dc-element>subject</dc-element> + <dc-qualifier>fos</dc-qualifier> + <repeatable>true</repeatable> + <label>Subject Keywords (Fields of Science and Technology - OECD) </label> + <input-type>tag</input-type> + <hint>Enter appropriate subject keywords or phrases based on the defined taxonomy.</hint> + <required></required> + <vocabulary>fos</vocabulary> + </field> + </row> --> + + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier>abstract</dc-qualifier> + <repeatable>false</repeatable> + <label>Abstract</label> + <input-type>textarea</input-type> + <hint>Enter the abstract of the item.</hint> + <required></required> + </field> + </row> + <row> + <relation-field> + <relationship-type>isProjectOfPublication</relationship-type> + <search-configuration>project</search-configuration> + <repeatable>true</repeatable> + <name-variants>false</name-variants> + <label>Funding</label> + <hint>Add a related Funding</hint> + <linked-metadata-field> + <dc-schema>dc</dc-schema> + <dc-element>relation</dc-element> + <input-type>onebox</input-type> + </linked-metadata-field> + <externalsources>openAIREFunding</externalsources> + <required></required> + </relation-field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>rights</dc-element> + <repeatable>false</repeatable> + <label>Access Type</label> + <input-type value-pairs-name="openaire_rights">dropdown</input-type> + <hint>Select the access type of the resource.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>license</dc-element> + <dc-qualifier>condition</dc-qualifier> + <repeatable>false</repeatable> + <label>License</label> + <input-type value-pairs-name="openaire_license_types">dropdown</input-type> + <hint>Select the license of the resource.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>coverage</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Coverage</label> + <input-type>onebox</input-type> + <hint>Enter the coverage of the item, like a period, jurisdiction, etc.</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <dc-qualifier></dc-qualifier> + <repeatable>false</repeatable> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter any other description or comments in this box.</hint> + <required></required> + </field> + </row> + </form> + + <form name="openAIREPersonForm"> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>familyName</dc-element> + <label>Last name</label> + <input-type>onebox</input-type> + <hint>Enter surname or last name of the person</hint> + </field> + <field> + <dc-schema>person</dc-schema> + <dc-element>givenName</dc-element> + <label>First name</label> + <input-type>onebox</input-type> + <hint>Enter personal or first name of the person</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <label>Author preferred name</label> + <input-type>onebox</input-type> + <hint>Enter the preferred name of this person regarding the authorship</hint> + </field> + </row> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>affiliation</dc-element> + <dc-qualifier>name</dc-qualifier> + <repeatable>true</repeatable> + <label>Affiliation Name</label> + <input-type>onebox</input-type> + <hint>Enter the organizational or institutional affiliation of this person</hint> + </field> + </row> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>email</dc-element> + <repeatable>true</repeatable> + <label>Email</label> + <input-type>onebox</input-type> + <hint>Enter the email of the person</hint> + </field> + </row> + <row> + <field> + <dc-schema>person</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of qualdrop_value MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Author identifier</label> + <input-type value-pairs-name="openaire_author_identifier_types">qualdrop_value</input-type> + <hint>If the author has any identifiers or codes associated with + it, please enter the types and the actual numbers or codes. + </hint> + <required></required> + </field> + </row> + </form> + + <form name="openAIREProjectForm"> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>title</dc-element> + <label>Project name</label> + <input-type>onebox</input-type> + <hint>Enter the name of the project</hint> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier>uri</dc-qualifier> + <label>Project web page</label> + <input-type>onebox</input-type> + <hint>Enter the URL of the project webpage</hint> + </field> + </row> + <row> + <relation-field> + <relationship-type>isFundingAgencyOfProject</relationship-type> + <search-configuration>openAIREFundingAgency</search-configuration> + <repeatable>false</repeatable> + <name-variants>false</name-variants> + <label>Funding Agency</label> + <hint>Add a Funding Agency</hint> + <linked-metadata-field> + <dc-schema>project</dc-schema> + <dc-element>funder</dc-element> + <dc-qualifier>name</dc-qualifier> + <input-type>onebox</input-type> + </linked-metadata-field> + <externalsources></externalsources> + <required>One funding agency is required</required> + </relation-field> + </row> + <row> + <field> + <dc-schema>oaire</dc-schema> + <dc-element>fundingStream</dc-element> + <label>Name of the Funding Stream</label> + <input-type>onebox</input-type> + <hint>Enter the name of the funding stream of the project</hint> + </field> + <field> + <dc-schema>dc</dc-schema> + <dc-element>identifier</dc-element> + <label>Award number</label> + <input-type>onebox</input-type> + <hint>Enter the identifier of the project</hint> + </field> + </row> + </form> + + <form name="openAIREOrganizationForm"> + <row> + <field> + <dc-schema>organization</dc-schema> + <dc-element>legalName</dc-element> + <label>Organization name</label> + <input-type>onebox</input-type> + <hint>Enter the name of the orgunit or organization</hint> + </field> + </row> + <row> + <field> + <dc-schema>organization</dc-schema> + <dc-element>identifier</dc-element> + <dc-qualifier></dc-qualifier> + <!-- An input-type of qualdrop_value MUST be marked as repeatable --> + <repeatable>true</repeatable> + <label>Organization identifier</label> + <input-type value-pairs-name="openaire_organization_identifier_types">qualdrop_value</input-type> + <hint>If the organization has any identifiers or codes associated with + it, please enter the types and the actual numbers or codes. + </hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>type</dc-element> + <label>Organization type</label> + <input-type value-pairs-name="openaire_organization_types">dropdown</input-type> + <hint>Choose the attributes of the Organization</hint> + <required></required> + </field> + </row> + <row> + <field> + <dc-schema>dc</dc-schema> + <dc-element>description</dc-element> + <label>Description</label> + <input-type>textarea</input-type> + <hint>Enter the description of the orgunit</hint> + </field> + </row> + </form> + + </form-definitions> + + + <!-- form-value-pairs populate dropdown and qualdrop-value lists. --> + <!-- The form-value-pairs element holds child elements named 'value-pairs' --> + <!-- A 'value-pairs' element has a value-pairs-name and a dc-term --> + <!-- attribute. The dc-term attribute specifies which to which Dublin Core --> + <!-- Term this set of value-pairs applies. --> + <!-- Current dc-terms are: identifier-pairs, type-pairs, and --> + <!-- language_iso-pairs. The name attribute matches a name --> + <!-- in the form-map, above. --> + <!-- A value-pair contains one 'pair' for each value displayed in the list --> + <!-- Each pair contains a 'displayed-value' element and a 'stored-value' --> + <!-- element. A UI list displays the displayed-values, but the program --> + <!-- stores the associated stored-values in the database. --> + + <form-value-pairs> + +<!-- begin: paleo --> + + <value-pairs value-pairs-name="paleo_category" dc-term="relation_ispartofseries"> + <pair> + <displayed-value>Papers on Paleontology</displayed-value> + <stored-value>Papers on Paleontology</stored-value> + </pair> + <pair> + <displayed-value>Miscellaneous Papers</displayed-value> + <stored-value>Miscellaneous Papers</stored-value> + </pair> + <pair> + <displayed-value>Contributions</displayed-value> + <stored-value>Contributions</stored-value> + </pair> + </value-pairs> + +<!--end: paleo --> + +<!-- begin: Ross School of Business --> + + <value-pairs value-pairs-name="busadwp_department_types" dc-term="subject_classification"> + + <pair> + <displayed-value>Accounting</displayed-value> + <stored-value>Accounting</stored-value> + </pair> + + <pair> + <displayed-value>Business Administration</displayed-value> + <stored-value>Business Administration</stored-value> + </pair> + + <pair> + <displayed-value>Business Economics</displayed-value> + <stored-value>Business Economics</stored-value> + </pair> + + <pair> + <displayed-value>Business & Industrial Assistance Division</displayed-value> + <stored-value>Business & Industrial Assistance Division</stored-value> + </pair> + + <pair> + <displayed-value>Business Information Systems (starting Spring 2004)</displayed-value> + <stored-value>Business Information Systems (starting Spring 2004)</stored-value> + </pair> + + <pair> + <displayed-value>Business Information Technology</displayed-value> + <stored-value>Business Information Technology</stored-value> + </pair> + + <pair> + <displayed-value>Center for Health Care Economics</displayed-value> + <stored-value>Center for Health Care Economics</stored-value> + </pair> + + <pair> + <displayed-value>Center for International Business Education</displayed-value> + <stored-value>Center for International Business Education</stored-value> + </pair> + + <pair> + <displayed-value>Center for Positive Organizational Scholarship</displayed-value> + <stored-value>Center for Positive Organizational Scholarship</stored-value> + </pair> + + <pair> + <displayed-value>Computer Information Systems (thru Winter 2004)</displayed-value> + <stored-value>Computer Information Systems (thru Winter 2004)</stored-value> + </pair> + + <pair> + <displayed-value>Corporate Studies and International Business</displayed-value> + <stored-value>Corporate Studies and International Business</stored-value> + </pair> + + <pair> + <displayed-value>CREW</displayed-value> + <stored-value>CREW</stored-value> + </pair> + + <pair> + <displayed-value>Daewoo</displayed-value> + <stored-value>Daewoo</stored-value> + </pair> + + <pair> + <displayed-value>East Asia Management Development Center</displayed-value> + <stored-value>East Asia Management Development Center</stored-value> + </pair> + + <pair> + <displayed-value>Entrepreneurial Studies</displayed-value> + <stored-value>Entrepreneurial Studies</stored-value> + </pair> + + <pair> + <displayed-value>Executive Education</displayed-value> + <stored-value>Executive Education</stored-value> + </pair> + + <pair> + <displayed-value>Finance</displayed-value> + <stored-value>Finance</stored-value> + </pair> + + <pair> + <displayed-value>Financial Research Center</displayed-value> + <stored-value>Financial Research Center</stored-value> + </pair> + + <pair> + <displayed-value>Frederick A. and Barbara M. Erb Institute for Global Sustainable Enterprise</displayed-value> + <stored-value>Frederick A. and Barbara M. Erb Institute for Global Sustainable Enterprise</stored-value> + </pair> + + <pair> + <displayed-value>Global Business Partnership</displayed-value> + <stored-value>Global Business Partnership</stored-value> + </pair> + + <pair> + <displayed-value>Global Learning Center</displayed-value> + <stored-value>Global Learning Center</stored-value> + </pair> + + <pair> + <displayed-value>Human Resource Administration Journal</displayed-value> + <stored-value>Human Resource Administration Journal</stored-value> +</pair> +<pair> + <displayed-value>Institute of Labor and Industrial Relations</displayed-value> + <stored-value>Institute of Labor and Industrial Relations</stored-value> +</pair> +<pair> + <displayed-value>International Development</displayed-value> + <stored-value>International Development</stored-value> +</pair> +<pair> + <displayed-value>J. Ira Harris Center</displayed-value> + <stored-value>J. Ira Harris Center</stored-value> +</pair> + + <pair> + <displayed-value>Law, History, Communication</displayed-value> + <stored-value>Law, History, Communication</stored-value> + </pair> + <pair> + <displayed-value>Management and Organizations</displayed-value> + <stored-value>Management and Organizations</stored-value> + </pair> + +<pair> + <displayed-value>MAP</displayed-value> + <stored-value>MAP</stored-value> +</pair> + + <pair> + <displayed-value>Marketing</displayed-value> + <stored-value>Marketing</stored-value> + </pair> + +<pair> + <displayed-value>Mitsui Life Financial Research Center</displayed-value> + <stored-value>Mitsui Life Financial Research Center</stored-value> +</pair> +<pair> + <displayed-value>National Quality Research Center</displayed-value> + <stored-value>National Quality Research Center</stored-value> +</pair> +<pair> + <displayed-value>Nonprofit and Public Management Center</displayed-value> + <stored-value>Nonprofit and Public Management Center</stored-value> +</pair> +<pair> + <displayed-value>Office of Tax Policy Research</displayed-value> + <stored-value>Office of Tax Policy Research</stored-value> +</pair> + + + <pair> + <displayed-value>Operations and Management Science</displayed-value> + <stored-value>Operations and Management Science</stored-value> + </pair> + <pair> + <displayed-value>Org Behavior and Human Resource Management (thru Winter 2004)</displayed-value> + <stored-value>Org Behavior and Human Resource Management (thru Winter 2004)</stored-value> + </pair> + + +<pair> + <displayed-value>Samuel Zell & Robert H. Lurie Institute for Entrepreneurial Studies</displayed-value> + <stored-value>Samuel Zell & Robert H. Lurie Institute for Entrepreneurial Studies</stored-value> +</pair> + + <pair> + <displayed-value>Strategy</displayed-value> + <stored-value>Strategy</stored-value> + </pair> + +<pair> + <displayed-value>Tauber Manufacturing Institute</displayed-value> + <stored-value>Tauber Manufacturing Institute</stored-value> +</pair> +<pair> + <displayed-value>William Davidson Institute</displayed-value> + <stored-value>William Davidson Institute</stored-value> +</pair> + + + </value-pairs> + + + <value-pairs value-pairs-name="ross_second_level" dc-term="subject_hlb.second.level"> + <pair> + <displayed-value>Accounting</displayed-value> + <stored-value>Accounting</stored-value> + </pair> + <pair> + <displayed-value>Business (General)</displayed-value> + <stored-value>Business (General)</stored-value> + </pair> + <pair> + <displayed-value>Economics</displayed-value> + <stored-value>Economics</stored-value> + </pair> + <pair> + <displayed-value>Finance</displayed-value> + <stored-value>Finance</stored-value> + </pair> + <pair> + <displayed-value>International Business</displayed-value> + <stored-value>International Business</stored-value> + </pair> + <pair> + <displayed-value>Management</displayed-value> + <stored-value>Management</stored-value> + </pair> + <pair> + <displayed-value>Marketing</displayed-value> + <stored-value>Marketing</stored-value> + </pair> + </value-pairs> + +<!-- end: Ross School of Business --> + +<!-- begin: thesis --> + + <value-pairs value-pairs-name="thesis_degree" dc-term="description_thesis.degree.name"> + <pair> + <displayed-value>PhD</displayed-value> + <stored-value>PhD</stored-value> + </pair> + <pair> + <displayed-value>Doctor of Nursing Practice (DNP)</displayed-value> + <stored-value>Doctor of Nursing Practice (DNP)</stored-value> + </pair> + <pair> + <displayed-value>Doctor of Physical Therapy (DPT)</displayed-value> + <stored-value>Doctor of Physical Therapy (DPT)</stored-value> + </pair> + <pair> + <displayed-value>Doctor of Education (EdD)</displayed-value> + <stored-value>Doctor of Education (EdD)</stored-value> + </pair> + <pair> + <displayed-value>Doctor of Engineering (DEng)</displayed-value> + <stored-value>Doctor of Engineering (DEng)</stored-value> + </pair> + <pair> + <displayed-value>Master of Arts (MA)</displayed-value> + <stored-value>Master of Arts (MA)</stored-value> + </pair> + <pair> + <displayed-value>Master of Fine Arts (MFA)</displayed-value> + <stored-value>Master of Fine Arts (MFA)</stored-value> + </pair> + <pair> + <displayed-value>Master of Landscape Architecture (MLA)</displayed-value> + <stored-value>Master of Landscape Architecture (MLA)</stored-value> + </pair> + <pair> + <displayed-value>Master of Science (MS)</displayed-value> + <stored-value>Master of Science (MS)</stored-value> + </pair> + <pair> + <displayed-value>Master of Science in Engineering (MSE)</displayed-value> + <stored-value>Master of Science in Engineering (MSE)</stored-value> + </pair> + <pair> + <displayed-value>Master of Public Health (MPH)</displayed-value> + <stored-value>Master of Public Health (MPH)</stored-value> + </pair> + <pair> + <displayed-value>Master of Science in Nursing (MSN)</displayed-value> + <stored-value>Master of Science in Nursing (MSN)</stored-value> + </pair> + <pair> + <displayed-value>Doctor of Musical Arts (DMA)</displayed-value> + <stored-value>Doctor of Musical Arts (DMA)</stored-value> + </pair> + <pair> + <displayed-value>Master of Music (MM)</displayed-value> + <stored-value>Master of Music (MM)</stored-value> + </pair> + <pair> + <displayed-value>Bachelor of Fine Arts (BFA)</displayed-value> + <stored-value>Bachelor of Fine Arts (BFA)</stored-value> + </pair> + <pair> + <displayed-value>Master of Science in Information (MSI)</displayed-value> + <stored-value>Master of Science in Information (MSI)</stored-value> + </pair> + <pair> + <displayed-value>Master of Design (MDes)</displayed-value> + <stored-value>Master of Design (MDes)</stored-value> + </pair> + <pair> + <displayed-value>Doctor of Juridical Science (SJD)</displayed-value> + <stored-value>Doctor of Juridical Science (SJD)</stored-value> + </pair> + <pair> + <displayed-value>Master of Urban Planning (MURP)</displayed-value> + <stored-value>Master of Urban Planning (MURP)</stored-value> + </pair> + <pair> + <displayed-value>Doctor of Nurse Anesthesia Practice (DNAP)</displayed-value> + <stored-value>Doctor of Nurse Anesthesia Practice (DNAP)</stored-value> + </pair> + </value-pairs> + + <value-pairs value-pairs-name="dissertation_type" dc-term="type"> + <pair> + <displayed-value>Thesis</displayed-value> + <stored-value>Thesis</stored-value> + </pair> + <pair> + <displayed-value>Project</displayed-value> + <stored-value>Project</stored-value> + </pair> + <pair> + <displayed-value>Practicum</displayed-value> + <stored-value>Practicum</stored-value> + </pair> + </value-pairs> + +<!-- end: thesis --> + +<!-- begin: Generic --> + + <value-pairs value-pairs-name="embargo" dc-term="date_available"> + <pair> + <displayed-value>Immediate access to full description and files</displayed-value> + <stored-value>NO_RESTRICTION</stored-value> + </pair> + <pair> + <displayed-value>Access to full description and files in 3 months</displayed-value> + <stored-value>WITHHELD_THREE_MONTHS</stored-value> + </pair> + <pair> + <displayed-value>Access to full description and files in 6 months</displayed-value> + <stored-value>WITHHELD_HALF_YEAR</stored-value> + </pair> + <pair> + <displayed-value>Access to full description and files in 12 months</displayed-value> + <stored-value>WITHHELD_ONE_YEAR</stored-value> + </pair> + </value-pairs> + + <value-pairs value-pairs-name="peer_reviewed" dc-term="description_peerreviewed"> + <pair> + <displayed-value> </displayed-value> + <stored-value></stored-value> + </pair> + <pair> + <displayed-value>Peer Reviewed</displayed-value> + <stored-value>Peer Reviewed</stored-value> + </pair> + </value-pairs> + + <value-pairs value-pairs-name="um_campus" dc-term="contributor_affiliation.um.campus"> + <pair> + <displayed-value>Ann Arbor</displayed-value> + <stored-value>Ann Arbor</stored-value> + </pair> + <pair> + <displayed-value>Dearborn</displayed-value> + <stored-value>Dearborn</stored-value> + </pair> + <pair> + <displayed-value>Flint</displayed-value> + <stored-value>Flint</stored-value> + </pair> + </value-pairs> + + <value-pairs value-pairs-name="hlb_top_level" dc-term="subject_hlb.top.level"> + <pair> + <displayed-value>Arts</displayed-value> + <stored-value>Arts</stored-value> + </pair> + <pair> + <displayed-value>Business and Economics</displayed-value> + <stored-value>Business and Economics</stored-value> + </pair> + <pair> + <displayed-value>Engineering</displayed-value> + <stored-value>Engineering</stored-value> + </pair> + <pair> + <displayed-value>Government Information and Law</displayed-value> + <stored-value>Government Information and Law</stored-value> + </pair> + <pair> + <displayed-value>Health Sciences</displayed-value> + <stored-value>Health Sciences</stored-value> + </pair> + <pair> + <displayed-value>Humanities</displayed-value> + <stored-value>Humanities</stored-value> + </pair> + <pair> + <displayed-value>Science</displayed-value> + <stored-value>Science</stored-value> + </pair> + <pair> + <displayed-value>Social Sciences</displayed-value> + <stored-value>Social Sciences</stored-value> + </pair> + </value-pairs> + +<value-pairs value-pairs-name="hlb_second_level" dc-term="subject_hlb.second.level"> + <pair> + <displayed-value>Accounting</displayed-value> + <stored-value>Accounting</stored-value> + </pair> + <pair> + <displayed-value>Aerospace Engineering</displayed-value> + <stored-value>Aerospace Engineering</stored-value> + </pair> + <pair> + <displayed-value>African Studies</displayed-value> + <stored-value>African Studies</stored-value> + </pair> + <pair> + <displayed-value>African-American Studies</displayed-value> + <stored-value>African-American Studies</stored-value> + </pair> + <pair> + <displayed-value>American and Canadian Studies</displayed-value> + <stored-value>American and Canadian Studies</stored-value> + </pair> + <pair> + <displayed-value>Anthropology and Archaeology</displayed-value> + <stored-value>Anthropology and Archaeology</stored-value> + </pair> + <pair> + <displayed-value>Architecture</displayed-value> + <stored-value>Architecture</stored-value> + </pair> + <pair> + <displayed-value>Art and Design</displayed-value> + <stored-value>Art and Design</stored-value> + </pair> + <pair> + <displayed-value>Art History</displayed-value> + <stored-value>Art History</stored-value> + </pair> + <pair> + <displayed-value>Astronomy</displayed-value> + <stored-value>Astronomy</stored-value> + </pair> + <pair> + <displayed-value>Atmospheric, Oceanic and Space Sciences</displayed-value> + <stored-value>Atmospheric, Oceanic and Space Sciences</stored-value> + </pair> + <pair> + <displayed-value>Biological Chemistry</displayed-value> + <stored-value>Biological Chemistry</stored-value> + </pair> + <pair> + <displayed-value>Biomedical Engineering</displayed-value> + <stored-value>Biomedical Engineering</stored-value> + </pair> + <pair> + <displayed-value>Chemical Engineering</displayed-value> + <stored-value>Chemical Engineering</stored-value> + </pair> + <pair> + <displayed-value>Chemistry</displayed-value> + <stored-value>Chemistry</stored-value> + </pair> + <pair> + <displayed-value>Civil and Environmental Engineering</displayed-value> + <stored-value>Civil and Environmental Engineering</stored-value> + </pair> + <pair> + <displayed-value>Classical Studies</displayed-value> + <stored-value>Classical Studies</stored-value> + </pair> + <pair> + <displayed-value>Communications</displayed-value> + <stored-value>Communications</stored-value> + </pair> + <pair> + <displayed-value>Complementary and Alternative Medicine</displayed-value> + <stored-value>Complementary and Alternative Medicine</stored-value> + </pair> + <pair> + <displayed-value>Computer Science</displayed-value> + <stored-value>Computer Science</stored-value> + </pair> + <pair> + <displayed-value>Dentistry</displayed-value> + <stored-value>Dentistry</stored-value> + </pair> + <pair> + <displayed-value>Dermatology</displayed-value> + <stored-value>Dermatology</stored-value> + </pair> + <pair> + <displayed-value>East Asian Languages and Cultures</displayed-value> + <stored-value>East Asian Languages and Cultures</stored-value> + </pair> + <pair> + <displayed-value>Ecology and Evolutionary Biology</displayed-value> + <stored-value>Ecology and Evolutionary Biology</stored-value> + </pair> + <pair> + <displayed-value>Economics</displayed-value> + <stored-value>Economics</stored-value> + </pair> + <pair> + <displayed-value>Education</displayed-value> + <stored-value>Education</stored-value> + </pair> + <pair> + <displayed-value>Electrical Engineering</displayed-value> + <stored-value>Electrical Engineering</stored-value> + </pair> + <pair> + <displayed-value>English Language and Literature</displayed-value> + <stored-value>English Language and Literature</stored-value> + </pair> + <pair> + <displayed-value>Family Medicine and Primary Care</displayed-value> + <stored-value>Family Medicine and Primary Care</stored-value> + </pair> + <pair> + <displayed-value>Film and Video Studies</displayed-value> + <stored-value>Film and Video Studies</stored-value> + </pair> + <pair> + <displayed-value>Finance</displayed-value> + <stored-value>Finance</stored-value> + </pair> + <pair> + <displayed-value>Gay/Lesbian/Bisexual/Transgender Studies</displayed-value> + <stored-value>Gay/Lesbian/Bisexual/Transgender Studies</stored-value> + </pair> + <pair> + <displayed-value>General and Comparative Literature</displayed-value> + <stored-value>General and Comparative Literature</stored-value> + </pair> + <pair> + <displayed-value>Genetics</displayed-value> + <stored-value>Genetics</stored-value> + </pair> + <pair> + <displayed-value>Geography and Maps</displayed-value> + <stored-value>Geography and Maps</stored-value> + </pair> + <pair> + <displayed-value>Geology and Earth Sciences</displayed-value> + <stored-value>Geology and Earth Sciences</stored-value> + </pair> + <pair> + <displayed-value>Geriatrics</displayed-value> + <stored-value>Geriatrics</stored-value> + </pair> + <pair> + <displayed-value>Germanic Languages and Literature</displayed-value> + <stored-value>Germanic Languages and Literature</stored-value> + </pair> + <pair> + <displayed-value>Government Information</displayed-value> + <stored-value>Government Information</stored-value> + </pair> + <pair> + <displayed-value>History (General)</displayed-value> + <stored-value>History (General)</stored-value> + </pair> + <pair> + <displayed-value>Industrial and Operations Engineering</displayed-value> + <stored-value>Industrial and Operations Engineering</stored-value> + </pair> + <pair> + <displayed-value>Information and Library Science</displayed-value> + <stored-value>Information and Library Science</stored-value> + </pair> + <pair> + <displayed-value>International Business</displayed-value> + <stored-value>International Business</stored-value> + </pair> + <pair> + <displayed-value>Judaic Studies</displayed-value> + <stored-value>Judaic Studies</stored-value> + </pair> + <pair> + <displayed-value>Kinesiology and Sports</displayed-value> + <stored-value>Kinesiology</stored-value> + </pair> + <pair> + <displayed-value>Landscape Architecture</displayed-value> + <stored-value>Landscape Architecture</stored-value> + </pair> + <pair> + <displayed-value>Latin American and Caribbean Studies</displayed-value> + <stored-value>Latin American and Caribbean Studies</stored-value> + </pair> + <pair> + <displayed-value>Law and Legal Studies</displayed-value> + <stored-value>Law and Legal Studies</stored-value> + </pair> + <pair> + <displayed-value>Linguistics</displayed-value> + <stored-value>Linguistics</stored-value> + </pair> + <pair> + <displayed-value>Management</displayed-value> + <stored-value>Management</stored-value> + </pair> + <pair> + <displayed-value>Marketing</displayed-value> + <stored-value>Marketing</stored-value> + </pair> + <pair> + <displayed-value>Materials Science and Engineering</displayed-value> + <stored-value>Materials Science and Engineering</stored-value> + </pair> + <pair> + <displayed-value>Mathematics</displayed-value> + <stored-value>Mathematics</stored-value> + </pair> + <pair> + <displayed-value>Mechanical Engineering</displayed-value> + <stored-value>Mechanical Engineering</stored-value> + </pair> + <pair> + <displayed-value>Microbiology and Immunology</displayed-value> + <stored-value>Microbiology and Immunology</stored-value> + </pair> + <pair> + <displayed-value>Middle Eastern, Near Eastern and North African Studies</displayed-value> + <stored-value>Middle Eastern, Near Eastern and North African Studies</stored-value> + </pair> + <pair> + <displayed-value>Molecular, Cellular and Developmental Biology</displayed-value> + <stored-value>Molecular, Cellular and Developmental Biology</stored-value> + </pair> + <pair> + <displayed-value>Music and Dance</displayed-value> + <stored-value>Music and Dance</stored-value> + </pair> + <pair> + <displayed-value>Natural Resources and Environment</displayed-value> + <stored-value>Natural Resources and Environment</stored-value> + </pair> + <pair> + <displayed-value>Naval Architecture and Marine Engineering</displayed-value> + <stored-value>Naval Architecture and Marine Engineering</stored-value> + </pair> + <pair> + <displayed-value>Neurosciences</displayed-value> + <stored-value>Neurosciences</stored-value> + </pair> + <pair> + <displayed-value>Nuclear Engineering and Radiological Sciences</displayed-value> + <stored-value>Nuclear Engineering and Radiological Sciences</stored-value> + </pair> + <pair> + <displayed-value>Nursing</displayed-value> + <stored-value>Nursing</stored-value> + </pair> + <pair> + <displayed-value>Obstetrics and Gynecology</displayed-value> + <stored-value>Obstetrics and Gynecology</stored-value> + </pair> + <pair> + <displayed-value>Oncology and Hematology</displayed-value> + <stored-value>Oncology and Hematology</stored-value> + </pair> + <pair> + <displayed-value>Ophthalmology</displayed-value> + <stored-value>Ophthalmology</stored-value> + </pair> + <pair> + <displayed-value>Otolaryngology</displayed-value> + <stored-value>Otolaryngology</stored-value> + </pair> + <pair> + <displayed-value>Pathology</displayed-value> + <stored-value>Pathology</stored-value> + </pair> + <pair> + <displayed-value>Pediatrics</displayed-value> + <stored-value>Pediatrics</stored-value> + </pair> + <pair> + <displayed-value>Pharmacy and Pharmacology</displayed-value> + <stored-value>Pharmacy and Pharmacology</stored-value> + </pair> + <pair> + <displayed-value>Philosophy</displayed-value> + <stored-value>Philosophy</stored-value> + </pair> + <pair> + <displayed-value>Physical Medicine and Rehabilitation</displayed-value> + <stored-value>Physical Medicine and Rehabilitation</stored-value> + </pair> + <pair> + <displayed-value>Physics</displayed-value> + <stored-value>Physics</stored-value> + </pair> + <pair> + <displayed-value>Physiology</displayed-value> + <stored-value>Physiology</stored-value> + </pair> + <pair> + <displayed-value>Political Science</displayed-value> + <stored-value>Political Science</stored-value> + </pair> + <pair> + <displayed-value>Population and Demography</displayed-value> + <stored-value>Population and Demography</stored-value> + </pair> + <pair> + <displayed-value>Psychiatry</displayed-value> + <stored-value>Psychiatry</stored-value> + </pair> + <pair> + <displayed-value>Psychology</displayed-value> + <stored-value>Psychology</stored-value> + </pair> + <pair> + <displayed-value>Public Health</displayed-value> + <stored-value>Public Health</stored-value> + </pair> + <pair> + <displayed-value>Radiology</displayed-value> + <stored-value>Radiology</stored-value> + </pair> + <pair> + <displayed-value>Religious Studies</displayed-value> + <stored-value>Religious Studies</stored-value> + </pair> + <pair> + <displayed-value>Romance Languages and Literature</displayed-value> + <stored-value>Romance Languages and Literature</stored-value> + </pair> + <pair> + <displayed-value>Russian and East European Studies</displayed-value> + <stored-value>Russian and East European Studies</stored-value> + </pair> + <pair> + <displayed-value>Slavic Languages and Literature</displayed-value> + <stored-value>Slavic Languages and Literature</stored-value> + </pair> + <pair> + <displayed-value>Sociology</displayed-value> + <stored-value>Sociology</stored-value> + </pair> + <pair> + <displayed-value>South Asian Languages and Cultures</displayed-value> + <stored-value>South Asian Languages and Cultures</stored-value> + </pair> + <pair> + <displayed-value>Southeast Asian and Pacific Languages and Cultures</displayed-value> + <stored-value>Southeast Asian and Pacific Languages and Cultures</stored-value> + </pair> + <pair> + <displayed-value>Statistics and Numeric Data</displayed-value> + <stored-value>Statistics and Numeric Data</stored-value> + </pair> + <pair> + <displayed-value>Surgery and Anesthesiology</displayed-value> + <stored-value>Surgery and Anesthesiology</stored-value> + </pair> + <pair> + <displayed-value>Theatre and Drama</displayed-value> + <stored-value>Theatre and Drama</stored-value> + </pair> + <pair> + <displayed-value>Transportation</displayed-value> + <stored-value>Transportation</stored-value> + </pair> + <pair> + <displayed-value>Urban Planning</displayed-value> + <stored-value>Urban Planning</stored-value> + </pair> + <pair> + <displayed-value>West European Studies</displayed-value> + <stored-value>West European Studies</stored-value> + </pair> + <pair> + <displayed-value>Women's and Gender Studies</displayed-value> + <stored-value>Women's and Gender Studies</stored-value> + </pair> +</value-pairs> + + <value-pairs value-pairs-name="common_identifiers" dc-term="identifier"> + <pair> + <displayed-value>ISSN</displayed-value> + <stored-value>issn</stored-value> + </pair> + <pair> + <displayed-value>PMID</displayed-value> + <stored-value>pmid</stored-value> + </pair> + <pair> + <displayed-value>DOI</displayed-value> + <stored-value>doi</stored-value> + </pair> + <pair> + <displayed-value>ISMN</displayed-value> + <stored-value>ismn</stored-value> + </pair> + <pair> + <displayed-value>Gov't Doc #</displayed-value> + <stored-value>govdoc</stored-value> + </pair> + <pair> + <displayed-value>URI</displayed-value> + <stored-value>uri</stored-value> + </pair> + <pair> + <displayed-value>ISBN</displayed-value> + <stored-value>isbn</stored-value> + </pair> + <pair> + <displayed-value>OCLC</displayed-value> + <stored-value>oclc</stored-value> + </pair> + <pair> + <displayed-value>Other</displayed-value> + <stored-value>other</stored-value> + </pair> + </value-pairs> + + <value-pairs value-pairs-name="common_types" dc-term="type"> + <pair> + <displayed-value>Animation</displayed-value> + <stored-value>Animation</stored-value> + </pair> + <pair> + <displayed-value>Archival Material</displayed-value> + <stored-value>Archival Material</stored-value> + </pair> + <pair> + <displayed-value>Article</displayed-value> + <stored-value>Article</stored-value> + </pair> + <pair> + <displayed-value>Book</displayed-value> + <stored-value>Book</stored-value> + </pair> + <pair> + <displayed-value>Book chapter</displayed-value> + <stored-value>Book chapter</stored-value> + </pair> + <pair> + <displayed-value>Conference Paper</displayed-value> + <stored-value>Conference Paper</stored-value> + </pair> + <pair> + <displayed-value>Dataset</displayed-value> + <stored-value>Dataset</stored-value> + </pair> + <pair> + <displayed-value>Image</displayed-value> + <stored-value>Image</stored-value> + </pair> + <pair> + <displayed-value>Image, 3-D</displayed-value> + <stored-value>Image, 3-D</stored-value> + </pair> + <pair> + <displayed-value>Interview</displayed-value> + <stored-value>Interview</stored-value> + </pair> + <pair> + <displayed-value>Learning Object</displayed-value> + <stored-value>Learning Object</stored-value> + </pair> + <pair> + <displayed-value>Map</displayed-value> + <stored-value>Map</stored-value> + </pair> + <pair> + <displayed-value>Musical Score</displayed-value> + <stored-value>Musical Score</stored-value> + </pair> + <pair> + <displayed-value>Plan or blueprint</displayed-value> + <stored-value>Plan or blueprint</stored-value> + </pair> + <pair> + <displayed-value>Poster</displayed-value> + <stored-value>Poster</stored-value> + </pair> + <pair> + <displayed-value>Preprint</displayed-value> + <stored-value>Preprint</stored-value> + </pair> + <pair> + <displayed-value>Presentation</displayed-value> + <stored-value>Presentation</stored-value> + </pair> + <pair> + <displayed-value>Project</displayed-value> + <stored-value>Project</stored-value> + </pair> + <pair> + <displayed-value>Recording, acoustical</displayed-value> + <stored-value>Recording, acoustical</stored-value> + </pair> + <pair> + <displayed-value>Recording, musical</displayed-value> + <stored-value>Recording, musical</stored-value> + </pair> + <pair> + <displayed-value>Recording, oral</displayed-value> + <stored-value>Recording, oral</stored-value> + </pair> + <pair> + <displayed-value>Software</displayed-value> + <stored-value>Software</stored-value> + </pair> + <pair> + <displayed-value>Technical Report</displayed-value> + <stored-value>Technical Report</stored-value> + </pair> + <pair> + <displayed-value>Thesis</displayed-value> + <stored-value>Thesis</stored-value> + </pair> + <pair> + <displayed-value>Video</displayed-value> + <stored-value>Video</stored-value> + </pair> + <pair> + <displayed-value>Working Paper</displayed-value> + <stored-value>Working Paper</stored-value> + </pair> + <pair> + <displayed-value>Other</displayed-value> + <stored-value>Other</stored-value> + </pair> + </value-pairs> + + <!-- default language order: (from dspace 1.2.1) + "en_US", "en", "es", "de", "fr", "it", "ja", "zh", "other", "" + --> + <value-pairs value-pairs-name="common_iso_languages" dc-term="language_iso"> + <pair> + <displayed-value>English (United States)</displayed-value> + <stored-value>en_US</stored-value> + </pair> + <pair> + <displayed-value>English</displayed-value> + <stored-value>en</stored-value> + </pair> + <pair> + <displayed-value>Spanish</displayed-value> + <stored-value>es</stored-value> + </pair> + <pair> + <displayed-value>German</displayed-value> + <stored-value>de</stored-value> + </pair> + <pair> + <displayed-value>French</displayed-value> + <stored-value>fr</stored-value> + </pair> + <pair> + <displayed-value>Italian</displayed-value> + <stored-value>it</stored-value> + </pair> + <pair> + <displayed-value>Japanese</displayed-value> + <stored-value>ja</stored-value> + </pair> + <pair> + <displayed-value>Chinese</displayed-value> + <stored-value>zh</stored-value> + </pair> + <pair> + <displayed-value>Hebrew</displayed-value> + <stored-value>he</stored-value> + </pair> + <pair> + <displayed-value>Polish</displayed-value> + <stored-value>pl</stored-value> + </pair> + <pair> + <displayed-value>Yiddish</displayed-value> + <stored-value>yi</stored-value> + </pair> + <pair> + <displayed-value>Greek</displayed-value> + <stored-value>el</stored-value> + </pair> + <pair> + <displayed-value>(Other)</displayed-value> + <stored-value>other</stored-value> + </pair> + </value-pairs> - </form-definitions> + <value-pairs value-pairs-name="collection_mappings" dc-term="description_mapping"> + <pair> + <displayed-value>display_filler</displayed-value> + <stored-value>value_filler</stored-value> + </pair> + </value-pairs> + <value-pairs value-pairs-name="depositor" dc-term="description_depositor"> + <pair> + <displayed-value>display_filler</displayed-value> + <stored-value>value_filler</stored-value> + </pair> + </value-pairs> - <!-- form-value-pairs populate dropdown and qualdrop-value lists. --> - <!-- The form-value-pairs element holds child elements named 'value-pairs' --> - <!-- A 'value-pairs' element has a value-pairs-name and a dc-term --> - <!-- attribute. The dc-term attribute specifies which to which Dublin Core --> - <!-- Term this set of value-pairs applies. --> - <!-- Current dc-terms are: identifier-pairs, type-pairs, and --> - <!-- language_iso-pairs. The name attribute matches a name --> - <!-- in the form-map, above. --> - <!-- A value-pair contains one 'pair' for each value displayed in the list --> - <!-- Each pair contains a 'displayed-value' element and a 'stored-value' --> - <!-- element. A UI list displays the displayed-values, but the program --> - <!-- stores the associated stored-values in the database. --> + <value-pairs value-pairs-name="common_languages" dc-term="language_none"> + <pair> + <displayed-value>English</displayed-value> + <stored-value>English</stored-value> + </pair> + <pair> + <displayed-value>Spanish</displayed-value> + <stored-value>Spanish</stored-value> + </pair> + <pair> + <displayed-value>German</displayed-value> + <stored-value>German</stored-value> + </pair> + <pair> + <displayed-value>French</displayed-value> + <stored-value>French</stored-value> + </pair> + <pair> + <displayed-value>Italian</displayed-value> + <stored-value>Italian</stored-value> + </pair> + <pair> + <displayed-value>Japanese</displayed-value> + <stored-value>Japanese</stored-value> + </pair> + <pair> + <displayed-value>Chinese</displayed-value> + <stored-value>Chinese</stored-value> + </pair> + <pair> + <displayed-value>Other</displayed-value> + <stored-value>Other</stored-value> + </pair> + </value-pairs> - <form-value-pairs> - <value-pairs value-pairs-name="common_identifiers" dc-term="identifier"> - <pair> - <displayed-value>ISSN</displayed-value> - <stored-value>issn</stored-value> - </pair> - <pair> - <displayed-value>Other</displayed-value> - <stored-value>other</stored-value> - </pair> - <pair> - <displayed-value>ISMN</displayed-value> - <stored-value>ismn</stored-value> - </pair> - <pair> - <displayed-value>Gov't Doc #</displayed-value> - <stored-value>govdoc</stored-value> - </pair> - <pair> - <displayed-value>URI</displayed-value> - <stored-value>uri</stored-value> - </pair> - <pair> - <displayed-value>ISBN</displayed-value> - <stored-value>isbn</stored-value> - </pair> - </value-pairs> - <value-pairs value-pairs-name="common_types" dc-term="type"> - <pair> - <displayed-value>Animation</displayed-value> - <stored-value>Animation</stored-value> - </pair> - <pair> - <displayed-value>Article</displayed-value> - <stored-value>Article</stored-value> - </pair> - <pair> - <displayed-value>Book</displayed-value> - <stored-value>Book</stored-value> - </pair> - <pair> - <displayed-value>Book chapter</displayed-value> - <stored-value>Book chapter</stored-value> - </pair> - <pair> - <displayed-value>Dataset</displayed-value> - <stored-value>Dataset</stored-value> - </pair> - <pair> - <displayed-value>Learning Object</displayed-value> - <stored-value>Learning Object</stored-value> - </pair> - <pair> - <displayed-value>Image</displayed-value> - <stored-value>Image</stored-value> - </pair> - <pair> - <displayed-value>Image, 3-D</displayed-value> - <stored-value>Image, 3-D</stored-value> - </pair> - <pair> - <displayed-value>Map</displayed-value> - <stored-value>Map</stored-value> - </pair> - <pair> - <displayed-value>Musical Score</displayed-value> - <stored-value>Musical Score</stored-value> - </pair> - <pair> - <displayed-value>Plan or blueprint</displayed-value> - <stored-value>Plan or blueprint</stored-value> - </pair> - <pair> - <displayed-value>Preprint</displayed-value> - <stored-value>Preprint</stored-value> - </pair> - <pair> - <displayed-value>Presentation</displayed-value> - <stored-value>Presentation</stored-value> - </pair> - <pair> - <displayed-value>Recording, acoustical</displayed-value> - <stored-value>Recording, acoustical</stored-value> - </pair> - <pair> - <displayed-value>Recording, musical</displayed-value> - <stored-value>Recording, musical</stored-value> - </pair> - <pair> - <displayed-value>Recording, oral</displayed-value> - <stored-value>Recording, oral</stored-value> - </pair> - <pair> - <displayed-value>Software</displayed-value> - <stored-value>Software</stored-value> - </pair> - <pair> - <displayed-value>Technical Report</displayed-value> - <stored-value>Technical Report</stored-value> - </pair> - <pair> - <displayed-value>Thesis</displayed-value> - <stored-value>Thesis</stored-value> - </pair> - <pair> - <displayed-value>Video</displayed-value> - <stored-value>Video</stored-value> - </pair> - <pair> - <displayed-value>Working Paper</displayed-value> - <stored-value>Working Paper</stored-value> - </pair> - <pair> - <displayed-value>Other</displayed-value> - <stored-value>Other</stored-value> - </pair> - </value-pairs> +<!-- end: Generic --> - <!-- default language order: (from dspace 1.2.1) - "en_US", "en", "es", "de", "fr", "it", "ja", "zh", "other", "" - --> - <value-pairs value-pairs-name="common_iso_languages" dc-term="language_iso"> - <pair> - <displayed-value>N/A</displayed-value> - <stored-value></stored-value> - </pair> - <pair> - <displayed-value>English (United States)</displayed-value> - <stored-value>en_US</stored-value> - </pair> - <pair> - <displayed-value>English</displayed-value> - <stored-value>en</stored-value> - </pair> - <pair> - <displayed-value>Spanish</displayed-value> - <stored-value>es</stored-value> - </pair> - <pair> - <displayed-value>German</displayed-value> - <stored-value>de</stored-value> - </pair> - <pair> - <displayed-value>French</displayed-value> - <stored-value>fr</stored-value> - </pair> - <pair> - <displayed-value>Italian</displayed-value> - <stored-value>it</stored-value> - </pair> - <pair> - <displayed-value>Japanese</displayed-value> - <stored-value>ja</stored-value> - </pair> - <pair> - <displayed-value>Chinese</displayed-value> - <stored-value>zh</stored-value> - </pair> - <pair> - <displayed-value>Portuguese</displayed-value> - <stored-value>pt</stored-value> - </pair> - <pair> - <displayed-value>Turkish</displayed-value> - <stored-value>tr</stored-value> - </pair> - <pair> - <displayed-value>(Other)</displayed-value> - <stored-value>other</stored-value> - </pair> - </value-pairs> <!-- OpenAIRE specific value pairs --> @@ -2040,50 +5271,14 @@ </pair> </value-pairs> - <value-pairs value-pairs-name="embargo" dc-term="date_available"> - <pair> - <displayed-value>Immediate access to full description and files</displayed-value> - <stored-value>NO_RESTRICTION</stored-value> - </pair> - <pair> - <displayed-value>Access to full description and files in 3 months</displayed-value> - <stored-value>WITHHELD_THREE_MONTHS</stored-value> - </pair> - <pair> - <displayed-value>Access to full description and files in 6 months</displayed-value> - <stored-value>WITHHELD_HALF_YEAR</stored-value> - </pair> - <pair> - <displayed-value>Access to full description and files in 12 months</displayed-value> - <stored-value>WITHHELD_ONE_YEAR</stored-value> - </pair> - </value-pairs> - - <value-pairs value-pairs-name="peer_reviewed" dc-term="description_peerreviewed"> - <pair> - <displayed-value> </displayed-value> - <stored-value></stored-value> - </pair> - <pair> - <displayed-value>Peer Reviewed</displayed-value> - <stored-value>Peer Reviewed</stored-value> - </pair> - </value-pairs> - - - <value-pairs value-pairs-name="collection_mappings" dc-term="description_mapping"> - <pair> - <displayed-value>display_filler</displayed-value> - <stored-value>value_filler</stored-value> - </pair> - </value-pairs> - +<!-- Just in case I need this later. <value-pairs value-pairs-name="depositor_123456789_416" dc-term="description_depositor"> <pair> <displayed-value>display_filler</displayed-value> <stored-value>value_filler</stored-value> </pair> </value-pairs> +--> </form-value-pairs>