{
  "tool_id": "female_athlete_formula_suite",
  "slug": "female-athlete-formula-suite",
  "path": "/female-athlete-formula-suite/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/female-athlete-formula-suite/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/female-athlete-formula-suite.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/female-athlete-formula-suite/",
  "sample_input": {
    "tool": "female_athlete_formula_suite",
    "weight_kg": 65,
    "height_cm": 168,
    "age": 30,
    "body_fat_pct": 24,
    "category": "regular_cycle"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "weight_kg": {
        "type": "number"
      },
      "height_cm": {
        "type": "number"
      },
      "age": {
        "type": "number"
      },
      "body_fat_pct": {
        "type": "number"
      },
      "category": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "weight_kg",
      "height_cm",
      "age",
      "category"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "ffmi": {
        "type": "number"
      },
      "ffmiCeiling": {
        "type": "number"
      },
      "bmrKcal": {
        "type": "number"
      },
      "estimatedVo2Max": {
        "type": "number"
      },
      "maxHeartRate": {
        "type": "number"
      },
      "bodyFatPctEstimated": {
        "type": "number"
      },
      "bmi": {
        "type": "number"
      },
      "caveats": {
        "type": "array"
      }
    }
  }
}
