{
  "tool_id": "ideal_weight_calculator",
  "slug": "ideal-weight-calculator",
  "path": "/ideal-weight-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/ideal-weight-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/ideal-weight-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/ideal-weight-calculator/",
  "sample_input": {
    "tool": "ideal_weight_calculator",
    "sex": "male",
    "height_cm": 178
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "sex": {
        "type": "string"
      },
      "height_cm": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "sex",
      "height_cm"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "devineKg": {
        "type": "number"
      },
      "robinsonKg": {
        "type": "number"
      },
      "millerKg": {
        "type": "number"
      },
      "hamwiKg": {
        "type": "number"
      },
      "minKg": {
        "type": "number"
      },
      "maxKg": {
        "type": "number"
      }
    }
  }
}
