-
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
Changes from 19 commits
0b43d6a
9174f55
1dcf4fa
13ae6df
d76a9b5
bb8d7bc
bcd5a59
1040a5d
e6ae81f
45afbaa
fd85cce
1501e14
6eb2c53
632d0f1
9d8c0f2
c4549a3
066e34b
d78a440
9204ae5
1979bb9
22402c3
8989a04
d9dff88
b7bd094
f5f6daa
9367f0b
eec81f3
0371fbd
e4e342d
b207127
e1429d9
c502e42
9367ab5
21f8598
0d8cdb1
281dfa9
182c84f
36b82e1
dc88cc8
a5e7b4d
c7b3944
7e724d7
7cfa243
7e15016
585c955
d5bf70d
4da1458
8de4cb3
f3ac808
084168f
244b717
b88d4e6
17d1374
ff8114d
ebe93b3
5b6de13
c32f2de
89daf92
0ac57e8
0cf18a2
bcffbb8
1bdb0b0
b0c0be7
373c308
8b04f0f
b8aa2d5
8b4fdb0
4ebf502
b628c7c
4d565b7
3c200f6
ae0fdac
83f37ed
dbcd67c
34b20d0
f2418ca
267d296
e187e12
2771343
a00039c
6b5c15e
a06b9fd
149dabd
6f9dde1
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" | ||
|
|
||
lzehl marked this conversation as resolved.
Show resolved
Hide resolved
|
lzehl marked this conversation as resolved.
Show resolved
Hide resolved
|
lzehl marked this conversation as resolved.
Show resolved
Hide resolved
|
|
| 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" | ||
| ], | ||
|
|
||
lzehl marked this conversation as resolved.
Show resolved
Hide resolved
|
lzehl marked this conversation as resolved.
Show resolved
Hide resolved
|
| 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" | ||
|
||
| ] | ||
| }, | ||
| "isPrecededBy": { | ||
|
|
||
lzehl marked this conversation as resolved.
Show resolved
Hide resolved
|
lzehl marked this conversation as resolved.
Show resolved
Hide resolved
|
Uh oh!
There was an error while loading. Please reload this page.