{
  "tool_id": "dots_score_calculator",
  "slug": "dots-score-calculator",
  "path": "/dots-score-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/dots-score-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/dots-score-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/dots-score-calculator/",
  "sample_input": {
    "tool": "dots_score_calculator",
    "sex": "male",
    "bodyweight_kg": 83,
    "total_kg": 500
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "sex": {
        "type": "string"
      },
      "bodyweight_kg": {
        "type": "number"
      },
      "total_kg": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "sex",
      "bodyweight_kg",
      "total_kg"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "dotsScore": {
        "type": "number"
      },
      "wilksScore": {
        "type": "number"
      },
      "classification": {
        "type": "string"
      },
      "bodyweightKg": {
        "type": "number"
      },
      "totalKg": {
        "type": "number"
      }
    }
  }
}
