{
  "tool_id": "ideal_weight_calculator",
  "slug": "ideal-weight-calculator",
  "path": "/ideal-weight-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/ideal-weight-calculator/?<params>",
  "sample_input": {
    "tool": "ideal_weight",
    "gender": "male",
    "height_cm": 178,
    "frame_size": "medium"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "gender": {
        "type": "string"
      },
      "height_cm": {
        "type": "integer"
      },
      "frame_size": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "gender",
      "height_cm",
      "frame_size"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "devineKg": {
        "type": "number"
      },
      "robinsonKg": {
        "type": "number"
      },
      "millerKg": {
        "type": "number"
      },
      "hamwiKg": {
        "type": "number"
      },
      "minKg": {
        "type": "number"
      },
      "maxKg": {
        "type": "number"
      }
    }
  }
}
