Version history
1 version on record. Newest first; the live version sits at the top with a live indicator.
- Live4/30/2026, 9:06:34 PM
53f2e4f2ce23Content snapshot
{ "version": "0.1.0", "summary": "Resolve a DOI to canonical metadata (title, authors, journal, year, abstract).", "runtime": "http_post", "runtime_config": { "url_env": "SCIDEX_V1_TOOLS_DOI_RESOLVE_URL", "url_default": "http://v1.scidex.ai/internal/tools/doi_resolve", "timeout_secs": 30 }, "input_schema": { "type": "object", "required": [ "doi" ], "properties": { "doi": { "type": "string", "description": "DOI in canonical form, e.g. 10.1038/nature12373" } } }, "output_schema": { "type": "object", "properties": { "pmid": { "type": "string" }, "year": { "type": "integer" }, "title": { "type": "string" }, "authors": { "type": "array", "items": { "type": "string" } }, "journal": { "type": "string" }, "abstract": { "type": "string" } } }, "resource_caps": { "network": "external", "max_duration_secs": 30 }, "cost_model": { "per_call_usd": 0.001 }, "examples": [ { "input": { "doi": "10.1038/nature12373" }, "description": "Resolve a Nature paper's metadata." } ], "lifecycle_state": "active" }