From e0e40d612ed9e45dbd0238da54aba0763cb3465a Mon Sep 17 00:00:00 2001 From: futa-ikeda <51409893+futa-ikeda@users.noreply.github.com> Date: Tue, 13 Feb 2024 15:44:11 -0500 Subject: [PATCH] Add new datacite resourceType options (#2121) - Ticket: [ENG-5133] - Feature flag: n/a ## Purpose - Add new options to resource type options to match what will be available in Datacite 4.5 schema ## Summary of Changes - Add `Instrument` and `StudyRegistration` to resourceTypeGeneralOptions array --- app/models/custom-metadata.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/custom-metadata.ts b/app/models/custom-metadata.ts index d4729705ef1..7bc1587c517 100644 --- a/app/models/custom-metadata.ts +++ b/app/models/custom-metadata.ts @@ -16,6 +16,7 @@ export const resourceTypeGeneralOptions = [ 'Dissertation', 'Event', 'Image', + 'Instrument', 'InteractiveResource', 'Journal', 'JournalArticle', @@ -29,6 +30,7 @@ export const resourceTypeGeneralOptions = [ 'Software', 'Sound', 'Standard', + 'StudyRegistration', 'Text', 'Workflow', 'Other',