{
  "tool_id": "plate_loading_calculator",
  "slug": "plate-loading-calculator",
  "path": "/plate-loading-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/plate-loading-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/plate-loading-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/plate-loading-calculator/",
  "sample_input": {
    "tool": "plate_loading_calculator",
    "target_weight": 100,
    "bar_weight": 20
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "target_weight": {
        "type": "number"
      },
      "bar_weight": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "target_weight",
      "bar_weight"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "achievable": {
        "type": "boolean"
      },
      "loadedWeight": {
        "type": "number"
      },
      "platesPerSide": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "plate": {
              "type": "number"
            },
            "count": {
              "type": "number"
            }
          }
        }
      },
      "nearestWeight": {
        "type": [
          "number",
          "null"
        ]
      }
    }
  }
}
