Version history

1 version on record. Newest first; the live version sits at the top with a live indicator.

  1. Live 9019cdbe79b4
    4/29/2026, 5:32:53 PM
    Content snapshot
    {
      "version": "0.1.0",
      "summary": "Resolve a disease name or identifier to OMIM / MONDO / DOID metadata + associated genes.",
      "runtime": "http_post",
      "runtime_config": {
        "url_env": "SCIDEX_V1_TOOLS_DISEASE_LOOKUP_URL",
        "url_default": "http://v1.scidex.ai/internal/tools/disease_lookup",
        "timeout_secs": 30
      },
      "input_schema": {
        "type": "object",
        "required": [
          "query"
        ],
        "properties": {
          "query": {
            "type": "string",
            "description": "Disease name (e.g. \"Parkinson's disease\") or id (MONDO:..., OMIM:..., DOID:...)."
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "doid": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "omim_id": {
            "type": "string"
          },
          "mondo_id": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "associated_genes": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "examples": [
        {
          "input": {
            "query": "Parkinson's disease"
          }
        }
      ],
      "lifecycle_state": "active"
    }