Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update crewMemberCollection.md #34

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/tutorials/crewMemberCollection.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ Let us create a set of metadata instances from this table that represents the cr

With these assumptions we will create:

- a metadata <samp>Collection</samp> for storing metadata instances
- a unique set of <samp>Consortium</samp> instances based on the name given in the <samp>memberOf</samp> column
- a <samp>ContactInformation</samp> instance based on the <samp>email</samp> column
- a <samp>Person</samp> instance for each table row with:
- the <samp>givenName</samp>, <samp>familyName</samp>, and <samp>alternateName</samp> (if available)
- a link to the respective <samp>ContactInformation</samp> instance
- a person-specific embedded <samp>Affiliation</samp> instance that links to the respective <samp>Consortium</samp> instance
- a metadata <samp>Collection</samp> for storing metadata instances
- a unique set of <samp>Consortium</samp> instances based on the name given in the <samp>memberOf</samp> column
- a <samp>ContactInformation</samp> instance based on the <samp>email</samp> column
- a <samp>Person</samp> instance for each table row with:
- the <samp>givenName</samp>, <samp>familyName</samp>, and <samp>alternateName</samp> (if available)
- a link to the respective <samp>ContactInformation</samp> instance
- a person-specific embedded <samp>Affiliation</samp> instance that links to the respective <samp>Consortium</samp> instance

We start by creating an empty metadata collection for storing metadata instances.

Expand Down