-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6653144
commit 36efb2b
Showing
11 changed files
with
158 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# TODO : | ||
|
||
- [ ] contact: organisation ou individualname | ||
|
||
Contact filter : | ||
|
||
- Organisation (translated) | ||
- Individual name | ||
|
||
Add filter along others : | ||
Map with ES (elastic search) | ||
Add individualName to retrieve in the request to index | ||
|
||
Json retrieved from index | ||
|
||
```json | ||
"contactForResource": [ | ||
{ | ||
"individual": "Beat Tschumi", | ||
"organisationObject": { | ||
"default": "Office fédéral de l'agriculture", | ||
"langger": "Bundesamt für Landwirtschaft", | ||
"langeng": "Federal Office for Agriculture", | ||
"langroh": "Bundesamt für Landwirtschaft", | ||
"langita": "Ufficio federale dell'agricoltura", | ||
"langfre": "Office fédéral de l'agriculture" | ||
}, | ||
"email": "[email protected]" | ||
} | ||
], | ||
``` | ||
|
||
## Questions for Florent: | ||
|
||
- contact or contact for resource? | ||
- where is the codelist ? Do we import it with geonetwork API ? | ||
|
||
```ts | ||
export const RoleValues = [ | ||
'unspecified', | ||
'other', | ||
'author', // Party who authored the resource | ||
'collaborator', // party who assists with the generation of the resource other than the principal investigator | ||
'contributor', // party contributing to the resource | ||
'custodian', // Party that accepts accountability and responsibility for the data and ensures appropriate care and maintenance of the resource | ||
'distributor', // Party who distributes the resource | ||
'editor', // party who reviewed or modified the resource to improve the content | ||
'funder', // party providing monetary support for the resource | ||
'mediator', // a class of entity that mediates access to the resource and for whom the resource is intended or useful | ||
'originator', // Party who created the resource | ||
'owner', // Party that owns the resource | ||
'point_of_contact', // Party who can be contacted for acquiring knowledge about or acquisition of the resource | ||
'principal_investigator', // Key party responsible for gathering information and conducting research | ||
'processor', // Party who has processed the data in a manner such that the resource has been modified | ||
'publisher', // Party who published the resource | ||
'resource_provider', // Party that supplies the resource | ||
'rights_holder', // party owning or managing rights over the resource | ||
'sponsor', // party that sponsors the resource | ||
'stakeholder', // party who has an interest in the resource or the use of the resource | ||
'user', // Party who uses the resource | ||
] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,6 +178,7 @@ describe('app config utils', () => { | |
'inspireKeyword', | ||
'topic', | ||
'license', | ||
'contact', | ||
], | ||
}) | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters