<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8"> <title>OpenAPI - Web Services Inist-CNRS</title> <link rel="stylesheet" type="text/css" href="https://unpkg.com/swagger-ui-dist@4.2.1/swagger-ui.css"> </head> <body> <div id="swagger-ui"></div> <script src="https://unpkg.com/swagger-ui-dist@4.2.1/swagger-ui-standalone-preset.js"></script> <script src="https://unpkg.com/swagger-ui-dist@4.2.1/swagger-ui-bundle.js"></script> <script> window.onload = function () { // Build a system const ui = SwaggerUIBundle({ urls: [ { url: "https://loterre-resolvers.services.inist.fr", name: "Résolveurs pour des terminologies Loterre"}, { url: "https://affiliations-tools.services.inist.fr", name: "Structuration & enrichissements d'affiliations"}, { url: "https://ark-tools.services.inist.fr/", name: "Services autour des identifiants ARK"}, { url: "https://biblio-tools.services.inist.fr/", name: "Outils pour références bibliographiques"}, // { url: "https://nlp-tools-2.services.inist.fr/", name: "Traitements automatiques du Langage Naturel"}, { url: "https://domains-classifier.services.inist.fr/", name: "Classification en domaines scientifiques"}, { url: "https://mapping-tools.services.inist.fr/", name: "Utilisation de tables de correspondance"}, { url: "https://nlp-tools2.services.inist.fr/", name: "Outils de NLP"}, // { url: "https://co-autodeduplicates-2.services.inist.fr/", name: "Dédoublonnage de notices bibliographiques Conditor"}, { url: "https://authors-tools-1.services.inist.fr/", name: "Outils de traitements basés sur les auteurs"}, { url: "https://terms-extraction.services.inist.fr", name: "Extraction de termes" }, { url: "https://hal-classifier.services.inist.fr", name: "Classification HAL" }, { url: "https://ner-tagger-1.services.inist.fr", name: "Détection d'entités nommées" }, ], queryConfigEnabled: true, dom_id: '#swagger-ui', deepLinking: true, presets: [ SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset ], plugins: [ SwaggerUIBundle.plugins.DownloadUrl ], layout: "StandaloneLayout", }) window.ui = ui } </script> </body> </html>