-
Notifications
You must be signed in to change notification settings - Fork 20
Draft for #513: Update of Actors, ResearchProducts,ResearchProductVersions, DigitalIdentifiers and their relationships. #561
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
base: v6
Are you sure you want to change the base?
Changes from all commits
0b43d6a
9174f55
1dcf4fa
13ae6df
d76a9b5
1040a5d
e6ae81f
45afbaa
fd85cce
1501e14
6eb2c53
632d0f1
9d8c0f2
c4549a3
066e34b
d78a440
9204ae5
1979bb9
22402c3
8989a04
d9dff88
b7bd094
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,29 +1,24 @@ | ||
| { | ||
| "_type": "core:Affiliation", | ||
| "required": [ | ||
| "memberOf" | ||
| "person", | ||
| "organization" | ||
| ], | ||
| "properties": { | ||
| "endDate": { | ||
| "type": "string", | ||
| "_formats": [ | ||
| "date" | ||
| ], | ||
| "_instruction": "Enter the end date of this affiliation, formatted as 'YYYY-MM-DD'. Leave blank if this affiliation is still current." | ||
| "person": { | ||
| "_instruction": "Add the individual to whom this affiliation belongs.", | ||
| "_linkedTypes": [ | ||
| "core:Person" | ||
| ] | ||
| }, | ||
| "memberOf": { | ||
| "_instruction": "Add the organization or consortium another party was or still is a member of.", | ||
| "_linkedTypes": [ | ||
| "core:Consortium", | ||
| "organization": { | ||
| "type": "array", | ||
| "minItems": 1, | ||
| "uniqueItems": true, | ||
| "_instruction": "Add all organizations (in display order) with which the specified individual is affiliated.", | ||
| "_linkedTypes": [ | ||
| "core:Organization" | ||
| ] | ||
| }, | ||
| "startDate": { | ||
| "type": "string", | ||
| "_formats": [ | ||
| "date" | ||
| ], | ||
| "_instruction": "Enter the start date of this affiliation, formatted as 'YYYY-MM-DD'." | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "_type": "core:Consortium", | ||
| "_categories": [ | ||
| "legalPerson" | ||
| "actor" | ||
| ], | ||
| "required": [ | ||
| "fullName" | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Change to following properties:
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| { | ||
| "_type": "core:GRIDID", | ||
| "_category": [ | ||
| "organizationIdentifier" | ||
| ], | ||
| "required": [ | ||
| "identifier" | ||
| ], | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "_type": "core:ISNI", | ||
Raphael-Gazzotti marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "_category": [ | ||
| "organizationIdentifier" | ||
| ], | ||
| "required": [ | ||
| "identifier" | ||
| ], | ||
| "properties": { | ||
| "identifier": { | ||
| "type": "string", | ||
| "pattern": "^https?://(www.)?isni.org/(isni/)?\\d{15}[\\dX]$)", | ||
| "_instruction": "Enter the identifier for legal entities provided by the International Standard Name Identifier Assignment Agency ('International Standard Name Identifier'; ISNI) as an internationalized resource identifier (IRI) following the defined pattern (i.e., 'https://isni.org/' + ISNI)." | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "_type": "core:LEI", | ||
Raphael-Gazzotti marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "_category": [ | ||
| "organizationIdentifier" | ||
| ], | ||
| "required": [ | ||
| "identifier" | ||
| ], | ||
| "properties": { | ||
| "identifier": { | ||
| "type": "string", | ||
| "pattern": "^https://lei.global/LEI/[A-Z0-9]{18}\\d{2}$", | ||
| "_instruction": "Enter the identifier for legal entities provided by a local operating unit delegated by the Global Legal Entity Identifier Foundation ('Legal Entity Identifier'; LEI) as an internationalized resource identifier (IRI) following the defined pattern (i.e., 'https://lei.global/LEI/' + LEI)." | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| { | ||
| "_type": "core:RORID", | ||
| "_category": [ | ||
| "organizationIdentifier" | ||
| ], | ||
| "required": [ | ||
| "identifier" | ||
| ], | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| { | ||
| "_type": "core:RRID", | ||
| "_category": [ | ||
| "organizationIdentifier" | ||
| ], | ||
| "required": [ | ||
| "identifier" | ||
| ], | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,15 +10,6 @@ | |
| "technique" | ||
| ], | ||
| "properties": { | ||
| "author": { | ||
| "type": "array", | ||
| "minItems": 1, | ||
| "uniqueItems": true, | ||
| "_instruction": "Add all parties that contributed to this dataset version as authors. Note that these authors will overwrite the author list provided for the overarching dataset.", | ||
| "_linkedCategories": [ | ||
| "legalPerson" | ||
| ] | ||
| }, | ||
| "behavioralProtocol": { | ||
| "type": "array", | ||
| "minItems": 1, | ||
|
|
@@ -69,10 +60,10 @@ | |
| "core:File", | ||
| "core:FileBundle", | ||
| "core:WebResource", | ||
| "https://openminds.ebrains.eu/sands/BrainAtlas", | ||
| "https://openminds.ebrains.eu/sands/BrainAtlasVersion", | ||
| "https://openminds.ebrains.eu/sands/CommonCoordinateSpace", | ||
| "https://openminds.ebrains.eu/sands/CommonCoordinateSpaceVersion" | ||
| "sands:BrainAtlas", | ||
| "sands:BrainAtlasVersion", | ||
| "sands:CommonCoordinateSpace", | ||
| "sands:CommonCoordinateSpaceVersion" | ||
|
Comment on lines
+63
to
+66
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. update according to SAND update, i.e.: BrainAtlas(Version) --> AnatomicalAtlasVersion |
||
| ] | ||
| }, | ||
| "isPrecededBy": { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.