{
  "tool_id": "one_person_saas_valuation",
  "slug": "one-person-saas-valuation",
  "path": "/one-person-saas-valuation/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/one-person-saas-valuation/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/one-person-saas-valuation.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/one-person-saas-valuation/",
  "sample_input": {
    "tool": "one_person_saas_valuation",
    "arr": 100000,
    "annual_profit": 40000,
    "monthly_growth_rate": 5,
    "years_in_operation": 2,
    "churn_rate": 5,
    "owner_hours_per_week": 20
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "arr": {
        "type": "number"
      },
      "annual_profit": {
        "type": "number"
      },
      "monthly_growth_rate": {
        "type": "number"
      },
      "years_in_operation": {
        "type": "number"
      },
      "churn_rate": {
        "type": "number"
      },
      "owner_hours_per_week": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "arr",
      "annual_profit",
      "monthly_growth_rate",
      "years_in_operation",
      "churn_rate",
      "owner_hours_per_week"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "methods": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "multiple": {
              "type": "number"
            },
            "value": {
              "type": "integer"
            },
            "basis": {
              "type": "integer"
            },
            "basisLabel": {
              "type": "string"
            }
          }
        }
      },
      "blendedEstimate": {
        "type": "integer"
      },
      "blendedLow": {
        "type": "integer"
      },
      "blendedHigh": {
        "type": "integer"
      },
      "factors": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "impact": {
              "type": "string"
            },
            "detail": {
              "type": "string"
            }
          }
        }
      },
      "insight": {
        "type": "string"
      }
    }
  }
}
