{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/profit-goal-calculator/schema.json",
  "title": "Profit Goal Calculator inputs",
  "description": "Calculate unit sales and revenue required to cover fixed costs and reach a target operating profit.",
  "type": "object",
  "properties": {
    "sellingPricePerUnit": {
      "title": "Selling price per unit",
      "type": "number",
      "default": 50,
      "minimum": 0,
      "x-step": 0.01,
      "x-unit": "currency"
    },
    "variableCostPerUnit": {
      "title": "Variable cost per unit",
      "type": "number",
      "default": 30,
      "minimum": 0,
      "x-step": 0.01,
      "x-unit": "currency"
    },
    "fixedCosts": {
      "title": "Fixed costs",
      "type": "number",
      "default": 100000,
      "minimum": 0,
      "x-step": 100,
      "multipleOf": 100,
      "x-unit": "currency"
    },
    "targetProfit": {
      "title": "Target profit",
      "type": "number",
      "default": 25000,
      "x-step": 100,
      "multipleOf": 100,
      "x-unit": "currency"
    }
  },
  "required": [
    "sellingPricePerUnit",
    "variableCostPerUnit",
    "fixedCosts",
    "targetProfit"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "1.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/profit-goal-calculator/",
    "queryExample": "https://askcalculators.com/calculator/profit-goal-calculator/?sellingPricePerUnit=50&variableCostPerUnit=30&fixedCosts=100000&targetProfit=25000",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "units for target = (fixed costs + target profit) ÷ (price − variable cost)"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/profit-goal-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "1.0.0",
      "referenceCoverage": "references-pending",
      "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
      "historicalMetadataDate": "2026-09-01",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "unitsRequired": {
        "title": "Units required",
        "type": "number",
        "x-format": "integer",
        "x-primary": true
      },
      "exactUnits": {
        "title": "Exact units before rounding",
        "type": "number",
        "x-format": "number",
        "x-digits": 6
      },
      "requiredRevenue": {
        "title": "Required sales revenue",
        "type": "number",
        "x-format": "currency"
      },
      "contributionMarginPerUnit": {
        "title": "Contribution margin per unit",
        "type": "number",
        "x-format": "currency"
      },
      "contributionMarginRatio": {
        "title": "Contribution margin ratio",
        "type": "number",
        "x-format": "percent",
        "x-digits": 6
      },
      "breakEvenUnits": {
        "title": "Break-even units",
        "type": "number",
        "x-format": "integer"
      }
    }
  }
}
