{
  "tool_id": "startup_runway_calculator",
  "slug": "startup-runway-calculator",
  "path": "/startup-runway-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/startup-runway-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/startup-runway-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/startup-runway-calculator/",
  "sample_input": {
    "tool": "startup_runway_calculator",
    "cash_on_hand": 150000,
    "monthly_burn": 25000,
    "monthly_revenue": 5000,
    "revenue_growth_pct": 5,
    "burn_reduction_pct": 0
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "cash_on_hand": {
        "type": "number"
      },
      "monthly_burn": {
        "type": "number"
      },
      "monthly_revenue": {
        "type": "number"
      },
      "revenue_growth_pct": {
        "type": "number"
      },
      "burn_reduction_pct": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "cash_on_hand",
      "monthly_burn",
      "monthly_revenue",
      "revenue_growth_pct",
      "burn_reduction_pct"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "runwayMonths": {
        "type": "number"
      },
      "defaultDate": {
        "type": "string"
      },
      "monthlyProjection": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "month": {
              "type": "number"
            },
            "cash": {
              "type": "number"
            },
            "burn": {
              "type": "number"
            },
            "revenue": {
              "type": "number"
            },
            "netBurn": {
              "type": "number"
            }
          }
        }
      },
      "breakEvenMonth": {
        "type": "null"
      }
    }
  }
}
