{
  "tool_id": "variable_income_budget",
  "slug": "variable-income-budget-planner",
  "path": "/variable-income-budget-planner/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/variable-income-budget-planner/?<params>",
  "sample_input": {
    "tool": "variable_income_budget_planner",
    "avg_monthly_income": "6000",
    "income_std_dev_percent": "30",
    "fixed_expenses_monthly": "3000",
    "variable_expenses_monthly": "1500",
    "savings_target_percent": "20"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "avg_monthly_income": {
        "type": "number",
        "minimum": 0
      },
      "income_std_dev_percent": {
        "type": "number",
        "minimum": 0,
        "maximum": 100
      },
      "fixed_expenses_monthly": {
        "type": "number",
        "minimum": 0
      },
      "variable_expenses_monthly": {
        "type": "number",
        "minimum": 0
      },
      "savings_target_percent": {
        "type": "number",
        "minimum": 0,
        "maximum": 100
      }
    },
    "required": [
      "avg_monthly_income",
      "income_std_dev_percent",
      "fixed_expenses_monthly",
      "variable_expenses_monthly",
      "savings_target_percent"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array"
      },
      "warnings": {
        "type": "array"
      }
    }
  }
}
