# == Schema Information # # Table name: madmp_fragments # id :integer not null, primary key # data :json # answer_id :integer # madmp_schema_id :integer # created_at :datetime not null # updated_at :datetime not null # classname :string # dmp_id :integer # parent_id :integer # Indexes # index_madmp_fragments_on_answer_id (answer_id) # index_madmp_fragments_on_madmp_schema_id (madmp_schema_id) class Fragment::DataCollection < MadmpFragment def plan Plan.find(data["plan_id"]) end def acquisition Fragment::TechnicalResourceUsage.where(parent_id: id).first end def methods_identifier Fragment::Identifier.where(parent_id: id) end def contributors Fragment::Contributor.where(parent_id: id) end def cost Fragment::Cost.where(parent_id: id) end def properties "plan, acquisition, methods_identifier, contributors, cost" end # Cited as dataCollection def used_in "research_output" end def self.sti_name "data_collection" end end