{
  "tool_id": "scope_creep_cost",
  "slug": "scope-creep-cost-calculator",
  "path": "/scope-creep-cost-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aibizhub.io/api/scope-creep-cost-calculator/?<params>",
  "sample_input": {
    "tool": "scope_creep_cost",
    "project_quote": 5000,
    "billable_rate": 100,
    "quoted_hours": 50,
    "actual_hours": 72,
    "projects_per_year": 12
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "project_quote": {
        "type": "integer"
      },
      "billable_rate": {
        "type": "integer"
      },
      "quoted_hours": {
        "type": "integer"
      },
      "actual_hours": {
        "type": "integer"
      },
      "projects_per_year": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "project_quote",
      "billable_rate",
      "quoted_hours",
      "actual_hours",
      "projects_per_year"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "effectiveHourlyRate": {
        "type": "number"
      },
      "rateCollapsePercent": {
        "type": "number"
      },
      "unpaidHours": {
        "type": "number"
      },
      "unpaidHoursValue": {
        "type": "number"
      },
      "annualCreepLoss": {
        "type": "number"
      },
      "scopeCreepTaxPercent": {
        "type": "number"
      },
      "quotedTotal": {
        "type": "number"
      },
      "actualTotal": {
        "type": "number"
      },
      "overrunPercent": {
        "type": "number"
      }
    }
  }
}
