{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/us/paint/schema.json",
  "title": "Paint Calculator inputs",
  "description": "Estimate paint quantity from wall area, openings, coats, coverage, and waste allowance. Add editable USD material and labor prices and compare low, middle and high budget scenarios.",
  "type": "object",
  "properties": {
    "unitSystem": {
      "title": "Dimension units",
      "type": "string",
      "description": "Changing this selector converts dimensions already entered. Prices keep the purchasing unit printed beside each price.",
      "default": "imperial",
      "enum": [
        "imperial",
        "metric"
      ],
      "x-optionLabels": {
        "imperial": "US customary (ft, in)",
        "metric": "Metric (m, cm)"
      }
    },
    "roomLength": {
      "title": "Room length (ft / m)",
      "type": "number",
      "default": 15,
      "minimum": 0,
      "x-step": 0.01
    },
    "roomWidth": {
      "title": "Room width (ft / m)",
      "type": "number",
      "default": 12,
      "minimum": 0,
      "x-step": 0.01
    },
    "wallHeight": {
      "title": "Wall height (ft / m)",
      "type": "number",
      "default": 8,
      "minimum": 0,
      "x-step": 0.01
    },
    "openingsArea": {
      "title": "Openings (ft² / m²)",
      "type": "number",
      "default": 40,
      "minimum": 0,
      "x-step": 0.01
    },
    "coats": {
      "title": "Number of coats",
      "type": "number",
      "default": 2,
      "minimum": 1,
      "x-step": 1,
      "multipleOf": 1
    },
    "coverage": {
      "title": "Coverage per gallon (ft²)",
      "type": "number",
      "default": 350,
      "minimum": 0.000001,
      "x-step": 1,
      "multipleOf": 1
    },
    "wastePercent": {
      "title": "Waste allowance",
      "type": "number",
      "default": 10,
      "minimum": 0,
      "maximum": 100,
      "x-step": 0.1,
      "x-suffix": "%"
    },
    "unitCost": {
      "title": "Material price (USD / US gallon)",
      "type": "number",
      "description": "Zero means unpriced. Use a current supplier quote; do not treat zero as free.",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-unit": "currency"
    },
    "laborCost": {
      "title": "Total labor allowance (USD)",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-unit": "currency"
    },
    "deliveryCost": {
      "title": "Delivery allowance (USD)",
      "type": "number",
      "default": 0,
      "minimum": 0,
      "x-step": 0.01,
      "x-unit": "currency"
    },
    "costSpreadPercent": {
      "title": "Low/high variation around entered subtotal (%)",
      "type": "number",
      "description": "A user-adjustable planning scenario, not a researched local price range.",
      "default": 15,
      "minimum": 0,
      "maximum": 100,
      "x-step": 1,
      "multipleOf": 1,
      "x-unit": "percent"
    }
  },
  "required": [
    "roomLength",
    "roomWidth",
    "wallHeight",
    "openingsArea",
    "coats",
    "coverage",
    "wastePercent"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "20.13.0",
    "calculatorUrl": "https://askcalculators.com/us/paint/",
    "queryExample": "https://askcalculators.com/us/paint/?roomLength=15&roomWidth=12&wallHeight=8&openingsArea=40&coats=2&coverage=350&wastePercent=10&unitCost=45&laborCost=300&deliveryCost=0&costSpreadPercent=15",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-09-10",
    "formula": {
      "expression": "paint = [perimeter × height − openings] × coats × (1 + waste%) ÷ coverage; material = unrounded purchase quantity × entered unit price; middle = material + labor + delivery; low/high = middle × (1 ∓ variation/100)"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/paint-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "20.13.0",
      "referenceCoverage": "references-listed",
      "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": {
      "gallons": {
        "title": "Paint required (gallons)",
        "type": "number",
        "x-format": "number",
        "x-digits": 2,
        "x-primary": true
      },
      "gallonsToBuy": {
        "title": "Whole gallons to buy",
        "type": "number",
        "x-format": "integer"
      },
      "paintArea": {
        "title": "Coated area (ft²)",
        "type": "number",
        "x-format": "number",
        "x-digits": 2
      },
      "netWallArea": {
        "title": "Net wall area (ft²)",
        "type": "number",
        "x-format": "number",
        "x-digits": 2
      },
      "litres": {
        "title": "Exact paint need (litres)",
        "type": "number",
        "x-format": "number",
        "x-digits": 3
      },
      "materialCost": {
        "title": "Material cost",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "laborCost": {
        "title": "Labor allowance",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "deliveryCost": {
        "title": "Delivery allowance",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "unitRate": {
        "title": "Entered USD rate / US gallon",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "estimatedTotal": {
        "title": "Entered subtotal",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "costLow": {
        "title": "Low budget scenario",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "costMid": {
        "title": "Middle budget scenario",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "costHigh": {
        "title": "High budget scenario",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD"
      },
      "pricingStatus": {
        "title": "Pricing status",
        "type": "string",
        "x-format": "text"
      }
    }
  }
}
