{
  "tool_id": "water_intake_calculator",
  "slug": "water-intake-calculator",
  "path": "/water-intake-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/water-intake-calculator/?<params>",
  "sample_input": {
    "tool": "water_intake",
    "weight_kg": 80,
    "activity_level": "moderate",
    "climate": "temperate"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "weight_kg": {
        "type": "integer"
      },
      "activity_level": {
        "type": "string"
      },
      "climate": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "weight_kg",
      "activity_level",
      "climate"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "litersPerDay": {
        "type": "number"
      },
      "glassesPerDay": {
        "type": "number"
      },
      "breakdown": {
        "type": "object",
        "properties": {
          "baseIntake": {
            "type": "number"
          },
          "activityMultiplier": {
            "type": "number"
          },
          "climateMultiplier": {
            "type": "number"
          }
        }
      }
    }
  }
}
