{
  "tool_id": "running_pace_calculator",
  "slug": "running-pace-calculator",
  "path": "/running-pace-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/running-pace-calculator/?<params>",
  "sample_input": {
    "tool": "running_pace",
    "distance_km": 10,
    "time_minutes": 50
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "distance_km": {
        "type": "integer"
      },
      "time_minutes": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "distance_km",
      "time_minutes"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "paceMinPerKm": {
        "type": "number"
      },
      "paceMinPerMile": {
        "type": "number"
      },
      "projectedRaces": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "label": {
              "type": "string"
            },
            "distanceKm": {
              "type": "number"
            },
            "timeMinutes": {
              "type": "number"
            }
          }
        }
      }
    }
  }
}
