{
  "tool_id": "pricing_model_picker",
  "slug": "pricing-model-picker",
  "path": "/pricing-model-picker/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/pricing-model-picker/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/pricing-model-picker.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/pricing-model-picker/",
  "sample_input": {
    "tool": "pricing_model_picker",
    "avg_users_per_account": 5,
    "avg_usage_units_per_user_per_month": 200,
    "gross_margin_per_unit": 0.05,
    "churn_monthly_pct": 3,
    "competitor_seat_price": 25,
    "competitor_usage_price": 0.1
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "avg_users_per_account": {
        "type": "number"
      },
      "avg_usage_units_per_user_per_month": {
        "type": "number"
      },
      "gross_margin_per_unit": {
        "type": "number"
      },
      "churn_monthly_pct": {
        "type": "number"
      },
      "competitor_seat_price": {
        "type": "number"
      },
      "competitor_usage_price": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "avg_users_per_account",
      "avg_usage_units_per_user_per_month",
      "gross_margin_per_unit",
      "churn_monthly_pct",
      "competitor_seat_price",
      "competitor_usage_price"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "recommendedModel": {
        "type": "string"
      },
      "recommendedLabel": {
        "type": "string"
      },
      "recommendedMonthlyRevenue": {
        "type": "number"
      },
      "projections": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "model": {
              "type": "string"
            },
            "label": {
              "type": "string"
            },
            "monthlyRevenuePerAccount": {
              "type": "number"
            }
          }
        }
      },
      "retainedFraction": {
        "type": "number"
      }
    }
  }
}
