{
  "tool_id": "model_price_drop_stress_test",
  "slug": "model-price-drop-stress-test",
  "path": "/model-price-drop-stress-test/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/model-price-drop-stress-test/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/model-price-drop-stress-test.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/model-price-drop-stress-test/",
  "sample_input": {
    "tool": "model_price_drop_stress_test",
    "monthly_revenue": 100000,
    "monthly_ai_cost": 15000,
    "gross_margin_percent_today": 60
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "monthly_revenue": {
        "type": "number"
      },
      "monthly_ai_cost": {
        "type": "number"
      },
      "gross_margin_percent_today": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "monthly_revenue",
      "monthly_ai_cost",
      "gross_margin_percent_today"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "todayGrossProfit": {
        "type": "number"
      },
      "todayNonAiCost": {
        "type": "number"
      },
      "scenarios": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "dropPercent": {
              "type": "number"
            },
            "newAiCost": {
              "type": "number"
            },
            "newGrossMarginKeepSavings": {
              "type": "number"
            },
            "newGrossMarginPassThrough": {
              "type": "number"
            },
            "newRevenueIfPassThrough": {
              "type": "number"
            }
          }
        }
      },
      "mostLikelyMargin": {
        "type": "number"
      }
    }
  }
}
