{
  "tool_id": "contractor_vs_employee",
  "slug": "contractor-vs-employee-calculator",
  "path": "/contractor-vs-employee-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aibizhub.io/api/contractor-vs-employee-calculator/?<params>",
  "sample_input": {
    "tool": "contractor_vs_employee",
    "annual_salary": 85000,
    "contractor_hourly_rate": 70,
    "annual_hours": 2080,
    "employer_fica_rate_percent": 7.65,
    "futa_annual": 42,
    "state_unemployment_annual": 420,
    "health_insurance_annual": 7000,
    "retirement_match_rate_percent": 3,
    "workers_comp_rate_percent": 1,
    "training_equipment_annual": 2000
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "annual_salary": {
        "type": "integer"
      },
      "contractor_hourly_rate": {
        "type": "integer"
      },
      "annual_hours": {
        "type": "integer"
      },
      "employer_fica_rate_percent": {
        "type": "number"
      },
      "futa_annual": {
        "type": "integer"
      },
      "state_unemployment_annual": {
        "type": "integer"
      },
      "health_insurance_annual": {
        "type": "integer"
      },
      "retirement_match_rate_percent": {
        "type": "integer"
      },
      "workers_comp_rate_percent": {
        "type": "integer"
      },
      "training_equipment_annual": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "annual_salary",
      "contractor_hourly_rate",
      "annual_hours",
      "employer_fica_rate_percent",
      "futa_annual",
      "state_unemployment_annual",
      "health_insurance_annual",
      "retirement_match_rate_percent",
      "workers_comp_rate_percent",
      "training_equipment_annual"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "annualSalary": {
        "type": "number"
      },
      "contractorHourlyRate": {
        "type": "number"
      },
      "annualHours": {
        "type": "number"
      },
      "w2TotalAnnualCost": {
        "type": "number"
      },
      "contractorAnnualCost": {
        "type": "number"
      },
      "w2HiddenCosts": {
        "type": "number"
      },
      "breakEvenContractorHourlyRate": {
        "type": "number"
      },
      "annualCostDelta": {
        "type": "number"
      },
      "monthlyCostDelta": {
        "type": "number"
      },
      "cheaperOption": {
        "type": "string"
      },
      "breakdown": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "label": {
              "type": "string"
            },
            "amount": {
              "type": "number"
            },
            "category": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}
