diff --git a/affiliations-tools/examples.http b/affiliations-tools/examples.http index af2836a..c75767a 100644 --- a/affiliations-tools/examples.http +++ b/affiliations-tools/examples.http @@ -29,5 +29,40 @@ ] ### +# Trouver le(s) identifiant(s) RNSR pour chaque adresse (format LODEX) +POST http://affiliations-tools.services.inist.fr/v1/rnsr/json?indent=true HTTP/1.1 +Content-Type: application/json +[ + { "id":1, "value": "CNRS UMR AMAP MONTPELLIER FRA" }, + { "id":2, "value": "IRD UMR AMAP MONTPELLIER FRA" }, + { "id":3, "value": "University of Bordeaux, IMS, CNRS UMR5218, Talence, F-33405, France" }, + { "id":4, "value": "CENBG, CNRS/IN2P3, Chemin du Solarium B. P. 120, Gradignan, F-33175, France" }, + { "id":5, "value": "Nulle part" } +] +### +# Trouver le(s) identifiant(s) RNSR pour chaque année de publication / adresse (format CSV) +POST http://affiliations-tools.services.inist.fr/v1/rnsr/csv HTTP/1.1 +Content-Type: text/csv + +Année,Adresse +2015,CNRS UMR AMAP MONTPELLIER FRA +2015,IRD UMR AMAP MONTPELLIER FRA +2015,"University of Bordeaux, IMS, CNRS UMR5218, Talence, F-33405, France" +2015,"CENBG, CNRS/IN2P3, Chemin du Solarium B. P. 120, Gradignan, F-33175, France" +### + +# Trouver le(s) identifiant(s) RNSR pour chaque affiliation de chaque notice Conditor. +POST http://affiliations-tools.services.inist.fr/v1/rnsr/conditor HTTP/1.1 +Content-Type: application/json + +[{ + "xPublicationDate": ["2012-01-01"], + "authors": [{ + "affiliations": [{ + "address": "GDR 2989 Université Versailles Saint-Quentin-en-Yvelines, 63009" + }] + }] +}] +###