diff --git a/mapping-tools/examples.http b/mapping-tools/examples.http index 31ad2e3..a3f5bc0 100644 --- a/mapping-tools/examples.http +++ b/mapping-tools/examples.http @@ -5,7 +5,21 @@ # mapping-tools: # npx ezs -v -d . -# Trouver le(s) identifiant(s) RNSR pour chaque adresse (format LODEX) +# Pour chauffer le cache rapidement, utiliser un seul cœur: +# EZS_CONCURRENCY=1 npx ezs -v -d . + +# Trouver l'Institut du CNRS associé à une structure de recherche + +POST http://localhost:31976/v1/rnsr/instituts-cnrs/json?indent=true HTTP/1.1 +Content-Type: application/json + +[ + {"id":1, "value": "200919362L"}, + {"id":2, "value": "200112440X"} +] +### + +# Trouver l'idRef associé au halAuthorId (format LODEX) POST http://localhost:31976/v1/halAuthorId/idRef/json?indent=true HTTP/1.1 Content-Type: application/json @@ -15,3 +29,14 @@ { "id":3, "value": "https://data.archives-ouvertes.fr/author/11165563" } ] ### + +# Trouver l'ORCID associé à l'IdRef (format LODEX) +POST http://localhost:31976/v1/idRef/orcid/json?indent=true HTTP/1.1 +Content-Type: application/json + +[ + { "id":1, "value": "http://www.idref.fr/190260483/id" }, + { "id":2, "value": "http://www.idref.fr/165835257/id" }, + { "id":3, "value": "http://www.idref.fr/182222918/id" } +] +###