{
  "tool_id": "rpe_to_percentage",
  "slug": "rpe-to-percentage-converter",
  "path": "/rpe-to-percentage-converter/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/rpe-to-percentage-converter/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/rpe-to-percentage-converter.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/rpe-to-percentage-converter/",
  "sample_input": {
    "tool": "rpe_to_percentage",
    "rpe": 8,
    "reps": 5,
    "one_rm": 140
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "rpe": {
        "type": "number"
      },
      "reps": {
        "type": "number"
      },
      "one_rm": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "rpe",
      "reps"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "selectedPercentage": {
        "type": "number"
      },
      "estimatedWeight": {
        "type": [
          "number",
          "null"
        ]
      },
      "table": {
        "type": "array"
      }
    }
  }
}
