{
  "tool_id": "food_to_exercise",
  "slug": "food-to-exercise-converter",
  "path": "/food-to-exercise-converter/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/food-to-exercise-converter/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/food-to-exercise-converter.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/food-to-exercise-converter/",
  "sample_input": {
    "tool": "food_to_exercise",
    "calories": 285,
    "weight_kg": 70,
    "food_name": "Pizza slice"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "calories": {
        "type": "number"
      },
      "weight_kg": {
        "type": "number"
      },
      "food_name": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "calories",
      "weight_kg",
      "food_name"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "calories": {
        "type": "number"
      },
      "foodName": {
        "type": "string"
      },
      "weightKg": {
        "type": "number"
      },
      "exercises": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "met": {
              "type": "number"
            },
            "minutes": {
              "type": "number"
            },
            "formattedDuration": {
              "type": "string"
            },
            "caloriesPer30Min": {
              "type": "number"
            }
          }
        }
      }
    }
  }
}
