{
  "tool_id": "dots_wilks_gl_combined",
  "slug": "dots-wilks-gl-combined-calculator",
  "path": "/dots-wilks-gl-combined-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/dots-wilks-gl-combined-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/dots-wilks-gl-combined-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/dots-wilks-gl-combined-calculator/",
  "sample_input": {
    "tool": "dots_wilks_gl_combined",
    "sex": "male",
    "bodyweight_kg": 83,
    "total_kg": 500,
    "equipped": "false"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "sex": {
        "type": "string",
        "enum": [
          "male",
          "female"
        ]
      },
      "bodyweight_kg": {
        "type": "number"
      },
      "total_kg": {
        "type": "number"
      },
      "equipped": {
        "type": "string",
        "enum": [
          "true",
          "false"
        ]
      }
    },
    "required": [
      "tool",
      "sex",
      "bodyweight_kg",
      "total_kg"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "dots": {
        "type": "object"
      },
      "wilks": {
        "type": "object"
      },
      "gl": {
        "type": "object"
      },
      "bestSystem": {
        "type": "string"
      },
      "bodyweightKg": {
        "type": "number"
      },
      "totalKg": {
        "type": "number"
      },
      "bwRatio": {
        "type": "number"
      }
    }
  }
}
