{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/auto-lease-calculator/schema.json",
  "title": "Auto Lease Calculator inputs",
  "description": "Calculate monthly auto lease payments based on negotiated price, residual value, and money factor.",
  "type": "object",
  "properties": {
    "msrp": {
      "title": "MSRP (Sticker Price)",
      "type": "number",
      "default": 35000
    },
    "negotiatedPrice": {
      "title": "Negotiated Price",
      "type": "number",
      "default": 33000
    },
    "downPayment": {
      "title": "Down Payment",
      "type": "number",
      "default": 2000
    },
    "term": {
      "title": "Lease Term (Months)",
      "type": "number",
      "default": 36
    },
    "residualValue": {
      "title": "Residual Value",
      "type": "number",
      "default": 55
    },
    "moneyFactor": {
      "title": "Money Factor",
      "type": "number",
      "default": 0.0025
    },
    "taxRate": {
      "title": "Sales Tax Rate",
      "type": "number",
      "default": 7
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/auto-lease-calculator/",
    "queryExample": "https://askcalculators.com/calculator/auto-lease-calculator/?msrp=35000&negotiatedPrice=33000&downPayment=2000&term=36&residualValue=55&moneyFactor=0.0025&taxRate=7",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "Monthly lease = depreciation charge + finance charge + monthly tax; depreciation = (capitalized cost − residual) ÷ term and finance charge = (capitalized cost + residual) × money factor."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/auto-lease-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "7.0.0",
      "referenceCoverage": "references-pending",
      "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
      "historicalMetadataDate": "2026-08-18",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "result": {
        "title": "Result",
        "type": "string",
        "x-format": "text",
        "x-primary": true
      }
    }
  }
}
