{
  "tool_id": "consulting_day_rate",
  "slug": "consulting-day-rate-calculator",
  "path": "/consulting-day-rate-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/consulting-day-rate-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/consulting-day-rate-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/consulting-day-rate-calculator/",
  "sample_input": {
    "tool": "consulting_day_rate",
    "annual_target": 150000,
    "working_days_per_year": 230,
    "overhead_percent": 20,
    "tax_percent": 25,
    "billable_percent": 70
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "annual_target": {
        "type": "number"
      },
      "working_days_per_year": {
        "type": "number"
      },
      "overhead_percent": {
        "type": "number"
      },
      "tax_percent": {
        "type": "number"
      },
      "billable_percent": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "annual_target",
      "working_days_per_year",
      "overhead_percent",
      "tax_percent",
      "billable_percent"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "dayRate": {
        "type": "number"
      },
      "hourlyEquivalent": {
        "type": "number"
      },
      "monthlyRevenue": {
        "type": "number"
      },
      "annualRevenue": {
        "type": "number"
      },
      "effectiveDaysPerYear": {
        "type": "integer"
      }
    }
  }
}
