{
  "tool_id": "job_offer_comparison",
  "slug": "job-offer-comparison-calculator",
  "path": "/job-offer-comparison-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/job-offer-comparison-calculator/?<params>",
  "sample_input": {
    "tool": "job_offer_comparison_calculator",
    "salary_a": "120000",
    "bonus_a": "10000",
    "equity_annual_a": "15000",
    "benefits_value_a": "8000",
    "salary_b": "110000",
    "bonus_b": "15000",
    "equity_annual_b": "25000",
    "benefits_value_b": "12000"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "salary_a": {
        "type": "number",
        "minimum": 0
      },
      "bonus_a": {
        "type": "number",
        "minimum": 0
      },
      "equity_annual_a": {
        "type": "number",
        "minimum": 0
      },
      "benefits_value_a": {
        "type": "number",
        "minimum": 0
      },
      "salary_b": {
        "type": "number",
        "minimum": 0
      },
      "bonus_b": {
        "type": "number",
        "minimum": 0
      },
      "equity_annual_b": {
        "type": "number",
        "minimum": 0
      },
      "benefits_value_b": {
        "type": "number",
        "minimum": 0
      }
    },
    "required": [
      "salary_a",
      "bonus_a",
      "equity_annual_a",
      "benefits_value_a",
      "salary_b",
      "bonus_b",
      "equity_annual_b",
      "benefits_value_b"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array"
      },
      "warnings": {
        "type": "array"
      }
    }
  }
}
