{
  "tool_id": "dots_score_calculator",
  "slug": "dots-score-calculator",
  "path": "/dots-score-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/dots-score-calculator/?<params>",
  "sample_input": {
    "tool": "dots_score",
    "sex": "male",
    "bodyweight_kg": 83,
    "total_kg": 500
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "sex": {
        "type": "string"
      },
      "bodyweight_kg": {
        "type": "integer"
      },
      "total_kg": {
        "type": "integer"
      }
    },
    "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"
      }
    }
  }
}
