{
  "tool_id": "social_media_roi",
  "slug": "social-media-roi-calculator",
  "path": "/social-media-roi-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/social-media-roi-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/social-media-roi-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/social-media-roi-calculator/",
  "sample_input": {
    "tool": "social_media_roi",
    "monthly_spend": 2000,
    "reach": 50000,
    "engagement_rate": 3,
    "click_through_rate": 5,
    "conversion_rate": 2,
    "average_order_value": 50
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "monthly_spend": {
        "type": "number"
      },
      "reach": {
        "type": "number"
      },
      "engagement_rate": {
        "type": "number"
      },
      "click_through_rate": {
        "type": "number"
      },
      "conversion_rate": {
        "type": "number"
      },
      "average_order_value": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "monthly_spend",
      "reach",
      "engagement_rate",
      "click_through_rate",
      "conversion_rate",
      "average_order_value"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "monthlyClicks": {
        "type": "integer"
      },
      "monthlyConversions": {
        "type": "integer"
      },
      "monthlyRevenue": {
        "type": "integer"
      },
      "monthlyProfit": {
        "type": "integer"
      },
      "roi": {
        "type": "integer"
      },
      "costPerClick": {
        "type": "number"
      },
      "costPerConversion": {
        "type": "integer"
      }
    }
  }
}
