{
  "tool_id": "burn_multiple",
  "slug": "burn-multiple-calculator",
  "path": "/burn-multiple-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/burn-multiple-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/burn-multiple-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/burn-multiple-calculator/",
  "sample_input": {
    "tool": "burn_multiple",
    "net_burn_monthly": 100000,
    "net_new_arr_monthly": 50000
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "net_burn_monthly": {
        "type": "number"
      },
      "net_new_arr_monthly": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "net_burn_monthly",
      "net_new_arr_monthly"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "burnMultiple": {
        "type": "integer"
      },
      "verdict": {
        "type": "string"
      },
      "annualBurn": {
        "type": "integer"
      },
      "annualNetNewArr": {
        "type": "integer"
      }
    }
  }
}
