{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/concrete-calculator/schema.json",
  "title": "Concrete Calculator inputs",
  "description": "Estimate concrete quantities, explicit waste, supplier bag yields and optional material/labor cost.",
  "type": "object",
  "properties": {
    "length": {
      "title": "Length",
      "type": "number",
      "default": 20,
      "minimum": 0,
      "x-step": 0.1,
      "x-suffix": " ft"
    },
    "width": {
      "title": "Width",
      "type": "number",
      "default": 10,
      "minimum": 0,
      "x-step": 0.1,
      "x-suffix": " ft"
    },
    "depthInches": {
      "title": "Depth",
      "type": "number",
      "default": 4,
      "minimum": 0,
      "x-step": 0.1,
      "x-suffix": " in"
    },
    "quantity": {
      "title": "Number of equal pours",
      "type": "number",
      "default": 1,
      "minimum": 1,
      "maximum": 100000,
      "x-step": 1,
      "multipleOf": 1
    },
    "wastePercent": {
      "title": "Waste allowance",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-suffix": " %"
    },
    "yield60": {
      "title": "Yield per 60 lb bag",
      "type": "number",
      "default": 0.45,
      "minimum": 0,
      "x-step": 0.01,
      "x-suffix": " ft³"
    },
    "yield80": {
      "title": "Yield per 80 lb bag",
      "type": "number",
      "default": 0.6,
      "minimum": 0,
      "x-step": 0.01,
      "x-suffix": " ft³"
    },
    "unitCost": {
      "title": "Ready-mix cost per cubic yard",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-suffix": " $/yd³"
    },
    "laborCost": {
      "title": "Total labor cost",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-suffix": " $"
    },
    "minimumOrderYards": {
      "title": "Supplier minimum order",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-suffix": " yd³"
    },
    "orderIncrementYards": {
      "title": "Supplier order increment (0 = none)",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-suffix": " yd³"
    },
    "deliveryCost": {
      "title": "Delivery allowance",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01
    }
  },
  "required": [
    "length",
    "width",
    "depthInches",
    "quantity"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "20.1.0",
    "calculatorUrl": "https://askcalculators.com/calculator/concrete-calculator/",
    "queryExample": "https://askcalculators.com/calculator/concrete-calculator/?length=20&width=10&depthInches=4&quantity=1&wastePercent=0&yield60=0.45&yield80=0.6&unitCost=0&laborCost=0&minimumOrderYards=0&orderIncrementYards=0&deliveryCost=0",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "Net ft³ = length × width × depthInches/12 × quantity; order yd³ = net ft³ × (1 + wastePercent/100) / 27; bags = ceil(order ft³ / supplier yield); estimate = order yd³ × price per yd³ + labor.",
      "note": "Net volume, allowance and supplier-rounded order are distinct. Bag counts are purchasing alternatives. Zero prices mean unpriced; no live pricing or structural design."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/concrete-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "20.1.0",
      "referenceCoverage": "references-listed",
      "releaseTestScope": "Flagship reference cases are specified in scripts/test-v20-1.mjs; consult release evidence for executed results.",
      "historicalMetadataDate": "2026-08-18",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "cubicYards": {
        "title": "Concrete volume",
        "type": "number",
        "x-format": "number",
        "x-suffix": " yd³",
        "x-digits": 3,
        "x-primary": true
      },
      "cubicFeet": {
        "title": "Cubic feet",
        "type": "number",
        "x-format": "number",
        "x-suffix": " ft³",
        "x-digits": 2
      },
      "allowanceCubicYards": {
        "title": "Volume including waste, before supplier rounding",
        "type": "number",
        "x-format": "number"
      },
      "bags60": {
        "title": "60 lb bags",
        "type": "number",
        "x-format": "integer"
      },
      "bags80": {
        "title": "80 lb bags",
        "type": "number",
        "x-format": "integer"
      },
      "orderCubicYards": {
        "title": "Volume including waste",
        "type": "number",
        "x-format": "number",
        "x-suffix": " yd³"
      },
      "materialCost": {
        "title": "Ready-mix material estimate",
        "type": "number",
        "x-format": "currency"
      },
      "estimatedTotal": {
        "title": "Material plus labor estimate",
        "type": "number",
        "x-format": "currency"
      }
    }
  }
}
