HumanBrainProject / openMINDS

openMINDS comprises a set of metadata models for research products in the field of neuroscience.
MIT License
40 stars 13 forks source link

Question: defining Person contributions to a dataset #48

Closed stevewds closed 1 year ago

stevewds commented 1 year ago

Hi -

What is the best way to express: "Person A contributed data collection to Dataset A"?

I know how to create a person object and a dataset object and a contribution object that says "Person A contributed data collection". But if there are several datasets, and Person A made different contributions to different datasets, I don't know how to properly express that situation in openMINDs.

Thanks! Steve

lzehl commented 1 year ago

@stevewds you can achieve this by creating one Contribution per Person (with multiple roles if needed) per DatasetVersion. Example (simplified):

DatasetVersion-A

Contribution-A-1

DatasetVersion-B

Contribution-B-1

stevewds commented 1 year ago

Thanks @lzehl, this answers it.