diff --git a/test/fixtures/dmptemplates.yml b/test/fixtures/dmptemplates.yml index 5a3fbae..3295d64 100644 --- a/test/fixtures/dmptemplates.yml +++ b/test/fixtures/dmptemplates.yml @@ -1,65 +1,75 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html +# Produces: +# ----------------------------- +# cc_template <-- belongs to organisation: cc +# cc_template_unpublished <-- belongs to organisation: cc +# +# funder_template_1 <-- belongs to organisation: funder +# funder_template_2 <-- belongs to organisation: funder +# funder_template_unpublished <-- belongs to organisation: funder +# +# complete_template <-- belongs to organisation: complete +# +# institution_[1..2]_template <-- belongs to organisation: institution_X +# institution_[1..2]_template_unpublished <-- belongs to organisation: institution_X +# +# school_[1..2]_template <-- belongs to organisation: school_X +# school_[1..2]_template_unpublished <-- belongs to organisation: school_X +# +# project_[1..2]_template <-- belongs to organisation: project_X +# project_[1..2]_template_unpublished <-- belongs to organisation: project_X +# -dcc_template: - title: "DMP Template" - description: "The default DCC template" +# Import organisation_types.yml so that we can dynamically generate organisations +<% organisation_types = YAML::load(ERB.new(File.read('./test/fixtures/organisation_types.yml')).result) %> + +cc_template: + title: "Curation Centre Default Template" + description: "The default template" published: true - organisation: dcc - locale: en + organisation: curation_center + locale: en-UK is_default: true + user: cc_admin -ahrc_template: - title: "AHRC Template" - description: "AHRC template" - published: true - organisation: ahrc - locale: en +cc_template_unpublished: + title: "Curation Centre Default Template" + description: "The default template" + published: false + organisation: curation_center + locale: en-UK + is_default: true + user: cc_admin -bbsrc_template: - title: "BBSRC Template" - description: "BBSRC template" - published: true - organisation: bbsrc - locale: en +<% 3.times do |n| %> +funder_template_<%= (n == 1 ? 'unpublished' : n + 1) %>: + title: <%= "Funder Template #{(n == 1 ? 'unpublished' : n + 1)}" %> + published: <%= (n != 1) %> + organisation: funder + locale: en-UK + user: funder_admin +<% end %> -cruk_template: - title: "CRUK Template" - description: "CRUK template" +complete_template: + title: "Complete Organisation's Template" + description: "The template for the complete organisation" published: true - organisation: cruk - locale: en + organisation: complete + locale: en-UK + user: complete_admin -esrc_template: - title: "ESRC Template" - description: "ESRC template" - published: true - organisation: esrc - locale: en +<% organisation_types.each do |lbl, obj| %> + <% unless ['funder', 'organisation'].include?(lbl) %> + <% 2.times do |x| %> + <% 2.times do |y| %> -nerc_template: - title: "NERC Template" - description: "NERC template" - published: true - organisation: nerc - locale: en +<%= lbl %>_<%= x + 1 %>_template<%= (y == 0 ? '' : '_unpublished') %>: + title: <%= "#{obj['name']} #{x + 1} Template #{(y == 0 ? '' : 'Unpublished')}" %> + published: <%= (y == 0) %> + organisation: <%= lbl %>_<%= x + 1 %> + locale: en-UK + user: institution_<%= x %>_admin -mrc_template: - title: "MRC Template" - description: "MRC template" - published: true - organisation: mrc - locale: en - -stfc_template: - title: "STFC Template" - description: "STFC template" - published: true - organisation: stfc - locale: en - -wellcome_template: - title: "Wellcome Trust Template" - description: "Wellcome Trust template" - published: true - organisation: wellcome - locale: en \ No newline at end of file + <% end %> + <% end %> + <% end %> +<% end %> \ No newline at end of file diff --git a/test/fixtures/phases.yml b/test/fixtures/phases.yml index 651c759..1a24240 100644 --- a/test/fixtures/phases.yml +++ b/test/fixtures/phases.yml @@ -1,57 +1,28 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html +# Produces: +# ----------------------------- +# Generates 1 Phase for each published template and 2 Phases for each one that +# is unpublished (see dmptemplates.yml for template list) +# +# [template]_phase_1 +# [template]_unpublished_phase_[1..2] +# +# -DCC_phase_1: - title: "DCC Data Management Questions" +# Import dmptemplates.yml so that we can dynamically generate phases +<% templates = YAML::load(ERB.new(File.read('./test/fixtures/dmptemplates.yml')).result) %> + +<% templates.each do |lbl, hash| %> + +<%= lbl %>_phase_1: + title: <%= "hash['title'] - Phase 1" %> number: 1 - dmptemplate: dcc_template + dmptemplate: <%= lbl %> -ahrc_template_1: - title: "AHRC Data Management Questions" - number: 1 - description: "
A Technical Plan should be no more than four pages long and provided for all applications where digital outputs or digital technologies are an essential part to the planned research outcomes.
" - dmptemplate: ahrc_template - -bbsrc_template_1: - title: "BBSRC Data Management Questions" - number: 1 - description: "All applications seeking research grant funding from BBSRC must submit a statement on data sharing. This should include concise plans for data management and sharing as part of research grant proposal or provide explicit reasons why data sharing is not possible or appropriate. The “statement on data sharing” will be included as an additional page in the case for support.
" - dmptemplate: bbsrc_template - -cruk_template_1: - title: "CRUK Data Management Questions" - number: 1 - description: "All applicants seeking funding from Cancer Research UK will be required to submit a data sharing plan as part of their research grant proposal. If data sharing is not appropriate, applicants must include a clear explanation why. The data sharing plan will be reviewed as part of the funding decision.
" - dmptemplate: cruk_template - -esrc_template_1: - title: "ESRC Data Management Questions" - number: 1 - description: "The ESRC requires that all applicants seeking ESRC funding include a statement on data sharing in the relevant section of the Je-S application form. If data sharing is not possible, the applicant must present a strong argument to justify their case.
" - dmptemplate: esrc_template - -nerc_template_1: - title: "Outline for application" - number: 1 - description: "NERC proposals should normally be accompanied by a Case for Support, and the length of these is specific to each scheme. In all cases this length should be increased by one page to be used for the Outline Data Management Plan.
" - dmptemplate: nerc_template - -nerc_template_2: - title: "Detail following award" + <% if lbl.include?('_unpublished') %> +<%= lbl %>_phase_2: + title: <%= "hash['title'] - Phase 2" %> number: 2 - description: "The Case for Support for successful proposals will be made available to the NERC Environmental Data Centres and, where appropriate, used to draft, in collaboration with the Principal Investigator, a full Data Management Plan (DMP). This full DMP should be mutually agreed between the Data Centre and the Principal Investigator within three months of the start date of the grant.
" - dmptemplate: nerc_template + dmptemplate: <%= lbl %> + <% end %> -mrc_template_1: - title: "MRC Data Management Questions" - number: 1 - dmptemplate: mrc_template - -stfc_template_1: - title: "STFC Data Management Questions" - number: 1 - dmptemplate: stfc_template - -wellcome_template_1: - title: "Wellcome Trust Data Management Questions" - number: 1 - dmptemplate: wellcome_template +<% end %> diff --git a/test/fixtures/sections.yml b/test/fixtures/sections.yml index 5a97476..ae406fd 100644 --- a/test/fixtures/sections.yml +++ b/test/fixtures/sections.yml @@ -1,442 +1,48 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html +# Produces: +# ----------------------------- +# Generates 2 Sections for each Version of a published template and 4 Sections for +# each Version of an unpublished template +# (see dmptemplates.yml, phases.yml and versions.yml) +# +# [template]_phase_1_version_1_section_[1..2] +# [template]_unpublished_phase_[1..2]_version_[1..2]_section_[1..4] +# +# The complete organisation has 2 sections attached to its template and 2 +# customisations +# +# complete_customised_template_phase_1_version_1_section_[1..2] +# -administrative_data: - title: Administrative Data - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 1 - version: DCC_phase_1_version_1 - organisation: dcc +# Import versions.yml so that we can dynamically generate sections +<% versions = YAML::load(ERB.new(File.read('./test/fixtures/versions.yml')).result) %> -data_collection: - title: Data Collection - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 2 - version: DCC_phase_1_version_1 - organisation: dcc +<% versions.each do |lbl, hash| %> + <% if lbl.include?('customised_') %> -documentation_and_metadata: - title: Documentation and Metadata - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 3 - version: DCC_phase_1_version_1 - organisation: dcc + <% 2.times do |n| %> +<%= lbl %>_customisation_<%= n + 1 %>: + title: <%= "#{(n == 0) ? 'Licensing (Customisation)' : 'Access (Customisation)'}" %> + number: <%= 3 + n %> + version: <%= lbl %> + organisation: complete + <% end %> -ethics_and_legal_compliance: - title: Ethics and Legal Compliance - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 4 - version: DCC_phase_1_version_1 - organisation: dcc + <% else %> -storage_and_backup: - title: Storage and Backup - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 5 - version: DCC_phase_1_version_1 - organisation: dcc + <% 2.times do |x| %> +<%= lbl %>_section_<%= x + 1 %>: + title: <%= "#{(x == 0) ? 'Data Collection' : 'Storage and Backup'}" %> + number: <%= x + 1 %> + version: <%= lbl %> + <% end %> -selection_and_preservation: - title: Selection and Preservation - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 6 - version: DCC_phase_1_version_1 - organisation: dcc - -data_sharing: - title: Data Sharing - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 7 - version: DCC_phase_1_version_1 - organisation: dcc - -responsibilities_and_resources: - title: Responsibilities and Resources - description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - number: 8 - version: DCC_phase_1_version_1 - organisation: dcc - -#multiple_choice: -# title: Multiple Choice Examples -# description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -# number: 9 -# version: DCC_phase_1_version_1 -# organisation: dcc - -ahrc_1: - title: Summary of Digital Outputs and Digital Technologies - number: 1 - version: ahrc_template_1_version_1 - organisation: ahrc - -ahrc_2: - title: Technical Methodology - number: 2 - version: ahrc_template_1_version_1 - organisation: ahrc - -ahrc_3: - title: Technical Support and Relevant Experience - number: 3 - version: ahrc_template_1_version_1 - organisation: ahrc - -ahrc_4: - title: Preservation, Sustainability and Use - number: 4 - version: ahrc_template_1_version_1 - organisation: ahrc - -bbsrc_1: - title: Data areas and data types - number: 1 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -bbsrc_2: - title: Standards and metadata - number: 2 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -bbsrc_3: - title: Relationship to other data available in public repositories - number: 3 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -bbsrc_4: - title: Secondary Use - number: 4 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -bbsrc_5: - title: Methods for data sharing - number: 5 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -bbsrc_6: - title: Proprietary data - number: 6 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -bbsrc_7: - title: Timeframes - number: 7 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -bbsrc_8: - title: Format of the final dataset - number: 8 - version: bbsrc_template_1_version_1 - organisation: bbsrc - -cruk_1: - title: Data volume, type, content and format - number: 1 - version: cruk_template_1_version_1 - organisation: cruk - -cruk_2: - title: Data collection and management standards - number: 2 - version: cruk_template_1_version_1 - organisation: cruk - -cruk_3: - title: Metadata, documentation and other supporting material - number: 3 - version: cruk_template_1_version_1 - organisation: cruk - -cruk_4: - title: Sharing method - number: 4 - version: cruk_template_1_version_1 - organisation: cruk - -cruk_5: - title: Release timescale - number: 5 - version: cruk_template_1_version_1 - organisation: cruk - -cruk_6: - title: Preservation Plan - number: 6 - version: cruk_template_1_version_1 - organisation: cruk - -cruk_7: - title: Data sharing agreement - number: 7 - version: cruk_template_1_version_1 - organisation: cruk - -cruk_8: - title: Sharing restrictions - number: 8 - version: cruk_template_1_version_1 - organisation: cruk - -esrc_1: - title: Existing data - number: 1 - version: esrc_template_1_version_1 - organisation: esrc - -esrc_2: - title: Information on the data that will be produced - number: 2 - version: esrc_template_1_version_1 - organisation: esrc - -esrc_3: - title: Planned quality assurance and back-up procedures (security/storage) - number: 3 - version: esrc_template_1_version_1 - organisation: esrc - -esrc_4: - title: Management and archiving of collected data - number: 4 - version: esrc_template_1_version_1 - organisation: esrc - -esrc_5: - title: Overcoming data sharing difficulties - number: 5 - version: esrc_template_1_version_1 - organisation: esrc - -esrc_6: - title: Consent, confidentiality, anonymisation and other ethical considerations - number: 6 - version: esrc_template_1_version_1 - organisation: esrc - -esrc_7: - title: Copyright and intellectual property ownership of the data - number: 7 - version: esrc_template_1_version_1 - organisation: esrc - -esrc_8: - title: Responsibilities for data management and curation - number: 8 - version: esrc_template_1_version_1 - organisation: esrc - -nerc_1_1: - title: Data management procedures to be followed during the lifetime of the grant or fellowship - number: 1 - version: nerc_template_1_version_1 - organisation: nerc - -nerc_1_2: - title: Existing datasets to be used by the grant or fellowship - number: 2 - version: nerc_template_1_version_1 - organisation: nerc - -nerc_1_3: - title: Datasets likely to be created by the grant or fellowship which will be made available to a NERC Environmental Data Centre at the end of the Grant - number: 3 - version: nerc_template_1_version_1 - organisation: nerc - -nerc_2_1: - title: Organisation - number: 1 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_2: - title: Roles and Responsibilities - number: 2 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_3: - title: Data Generation Activities - number: 3 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_4: - title: In-Project Data Management Approach - number: 4 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_5: - title: Metadata and Documentation - number: 5 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_6: - title: Data Quality - number: 6 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_7: - title: Exceptions or Additional Services - number: 7 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_8: - title: New Datasets - number: 8 - version: nerc_template_2_version_1 - organisation: nerc - -nerc_2_9: - title: Third Party/Existing Datasets - number: 9 - version: nerc_template_2_version_1 - organisation: nerc - -mrc_1: - title: Description of Data - number: 1 - version: mrc_template_1_version_1 - organisation: mrc - -mrc_2: - title: Data collection / generation - number: 2 - version: mrc_template_1_version_1 - organisation: mrc - -mrc_3: - title: Data management, documentation and curation - number: 3 - version: mrc_template_1_version_1 - organisation: mrc - -mrc_4: - title: Data security and confidentiality of potentially disclosive personal information - number: 4 - version: mrc_template_1_version_1 - organisation: mrc - -mrc_5: - title: Data sharing and access - number: 5 - version: mrc_template_1_version_1 - organisation: mrc - -mrc_6: - title: Policies and Responsibilities - number: 6 - version: mrc_template_1_version_1 - organisation: mrc - -stfc_1: - title: Data types - number: 1 - version: stfc_template_1_version_1 - organisation: stfc - -stfc_2: - title: Which data will be preserved and how - number: 2 - version: stfc_template_1_version_1 - organisation: stfc - -stfc_3: - title: Software and metadata implications - number: 3 - version: stfc_template_1_version_1 - organisation: stfc - -stfc_4: - title: Preservation period - number: 4 - version: stfc_template_1_version_1 - organisation: stfc - -stfc_5: - title: Which data will have value to others and should be shared - number: 5 - version: stfc_template_1_version_1 - organisation: stfc - -stfc_6: - title: Proprietary period - number: 6 - version: stfc_template_1_version_1 - organisation: stfc - -stfc_7: - title: How data will be shared - number: 7 - version: stfc_template_1_version_1 - organisation: stfc - -stfc_8: - title: Resources required to preserve and share data - number: 8 - version: stfc_template_1_version_1 - organisation: stfc - -wellcome_1: - title: Data outputs - number: 1 - version: wellcome_template_1_version_1 - organisation: wellcome - -wellcome_2: - title: Data sharing timeframe - number: 2 - version: wellcome_template_1_version_1 - organisation: wellcome - -wellcome_3: - title: Data sharing method - number: 3 - version: wellcome_template_1_version_1 - organisation: wellcome - -wellcome_4: - title: Access for other researchers - number: 4 - version: wellcome_template_1_version_1 - organisation: wellcome - -wellcome_5: - title: Data sharing limits - number: 5 - version: wellcome_template_1_version_1 - organisation: wellcome - -wellcome_6: - title: Data preservation - number: 6 - version: wellcome_template_1_version_1 - organisation: wellcome - -wellcome_7: - title: Required resources - number: 7 - version: wellcome_template_1_version_1 - organisation: wellcome - -institution_parent_1: - title: first section - number: 1 - version: institution_child_version_1 - organisation: institution_parent - -institution_parent_2: - title: seccond section - number: 2 - version: institution_child_version_1 - organisation: institution_parent \ No newline at end of file + <% if lbl.include?('_unpublished') %> + <% 2.times do |y| %> +<%= lbl %>_section_<%= y + 3 %>: + title: <%= "#{(y == 0) ? 'Documentation' : 'Compliance'}" %> + number: <%= 3 + y %> + version: <%= lbl %> + <% end %> + <% end %> + <% end %> +<% end %> diff --git a/test/fixtures/versions.yml b/test/fixtures/versions.yml index 2e7572d..d4e9758 100644 --- a/test/fixtures/versions.yml +++ b/test/fixtures/versions.yml @@ -1,67 +1,40 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html +# Produces: +# ----------------------------- +# Generates 1 Version for each Phase of a published template and 2 Versions for +# each Phase of an unpublished template +# (see dmptemplates.yml for template list and phases.yml for phase list) +# +# [template]_phase_1_version_1 +# [template]_unpublished_phase_[1..2]_version_[1..2] +# +# A copy of Funder Template 1 Phase 1 that contains customisations +# +# complete_template_customised_phase +# -DCC_phase_1_version_1: - title: DCC Phase 1 Version 1 - published: 1 - number: 1 - phase: DCC_phase_1 +# Import phases.yml so that we can dynamically generate versions +<% phases = YAML::load(ERB.new(File.read('./test/fixtures/phases.yml')).result) %> -ahrc_template_1_version_1: - title: "AHRC Data Management Questions (Version 1)" - published: 1 - number: 1 - phase: ahrc_template_1 +<% phases.each do |lbl, hash| %> -bbsrc_template_1_version_1: - title: "BBSRC Data Management Questions (Version 1)" - published: 1 +<%= lbl %>_version_1: + title: <%= "hash['title'] - Version 1" %> number: 1 - phase: bbsrc_template_1 + published: true + phase: <%= lbl %> -cruk_template_1_version_1: - title: "CRUK Data Management Questions (Version 1)" - published: 1 - number: 1 - phase: cruk_template_1 + <% if lbl.include?('_unpublished') %> +<%= lbl %>_version_2: + title: <%= "hash['title'] - Version 2" %> + number: 2 + published: false + phase: <%= lbl %> + <% end %> -esrc_template_1_version_1: - title: "ESRC Data Management Questions (Version 1)" - published: 1 - number: 1 - phase: esrc_template_1 +<% end %> -nerc_template_1_version_1: - title: "Outline for application (Version 1)" - published: 1 +complete_customised_template_phase_1_version_1: + title: "Customisation of Funder Template 1, Phase 1, Version 1" number: 1 - phase: nerc_template_1 - -nerc_template_2_version_1: - title: "Detail following award (Version 1)" - published: 1 - number: 1 - phase: nerc_template_2 - -mrc_template_1_version_1: - title: "MRC Data Management Questions (Version 1)" - published: 1 - number: 1 - phase: mrc_template_1 - -stfc_template_1_version_1: - title: "STFC Data Management Questions (Version 1)" - published: 1 - number: 1 - phase: stfc_template_1 - -wellcome_template_1_version_1: - title: "Wellcome Trust Data Management Questions (Version 1)" - published: 1 - number: 1 - phase: wellcome_template_1 - -institution_child_version_1: - title: DCC Phase 1 Version 1 - published: 1 - number: 1 - phase: DCC_phase_1 \ No newline at end of file + published: false + phase: funder_template_1_phase_1 \ No newline at end of file