{
  "tool_id": "startup_cost_estimator",
  "slug": "startup-cost-estimator",
  "path": "/startup-cost-estimator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/startup-cost-estimator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/startup-cost-estimator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/startup-cost-estimator/",
  "sample_input": {
    "tool": "startup_cost_estimator",
    "items": [
      {
        "name": "Legal",
        "category": "legal",
        "amount": 2000,
        "is_recurring": false
      }
    ]
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "items": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "category": {
              "type": "string"
            },
            "amount": {
              "type": "number"
            },
            "is_recurring": {
              "type": "boolean"
            },
            "recurring_months": {
              "type": "number"
            }
          },
          "required": [
            "name",
            "category",
            "amount",
            "is_recurring"
          ]
        }
      }
    },
    "required": [
      "tool",
      "items"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "totalOneTime": {
        "type": "integer"
      },
      "totalRecurringMonthly": {
        "type": "integer"
      },
      "totalRecurringAnnual": {
        "type": "integer"
      },
      "totalFirstYear": {
        "type": "integer"
      },
      "byCategory": {
        "type": "object",
        "properties": {
          "legal": {
            "type": "object",
            "properties": {
              "oneTime": {
                "type": "integer"
              },
              "recurring": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              }
            }
          }
        }
      },
      "itemCount": {
        "type": "integer"
      }
    }
  }
}
