{
  "tool_id": "career_break_runway",
  "slug": "career-break-runway-calculator",
  "path": "/career-break-runway-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/career-break-runway-calculator/?<params>",
  "sample_input": {
    "tool": "career_break_runway_calculator",
    "monthly_expenses_during_break": "4000",
    "break_months": "6",
    "healthcare_monthly": "500",
    "re_entry_costs": "3000",
    "current_savings": "30000"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "monthly_expenses_during_break": {
        "type": "number",
        "minimum": 0
      },
      "break_months": {
        "type": "number",
        "minimum": 1,
        "maximum": 36
      },
      "healthcare_monthly": {
        "type": "number",
        "minimum": 0
      },
      "re_entry_costs": {
        "type": "number",
        "minimum": 0
      },
      "current_savings": {
        "type": "number",
        "minimum": 0
      }
    },
    "required": [
      "monthly_expenses_during_break",
      "break_months",
      "healthcare_monthly",
      "re_entry_costs",
      "current_savings"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array"
      },
      "warnings": {
        "type": "array"
      }
    }
  }
}
