{
  "tool_id": "home_renovation_roi",
  "slug": "home-renovation-roi-calculator",
  "path": "/home-renovation-roi-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/home-renovation-roi-calculator/?<params>",
  "sample_input": {
    "tool": "home_renovation_roi_calculator",
    "project_cost": "25000",
    "estimated_value_added": "18000",
    "time_to_sell_years": "5",
    "home_current_value": "400000"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "project_cost": {
        "type": "number",
        "minimum": 0
      },
      "estimated_value_added": {
        "type": "number",
        "minimum": 0
      },
      "time_to_sell_years": {
        "type": "number",
        "minimum": 0,
        "maximum": 30
      },
      "home_current_value": {
        "type": "number",
        "minimum": 0
      }
    },
    "required": [
      "project_cost",
      "estimated_value_added",
      "time_to_sell_years",
      "home_current_value"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array"
      },
      "warnings": {
        "type": "array"
      }
    }
  }
}
