{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/us/vehicle-tax/schema.json",
  "title": "Vehicle Purchase Tax and Fees Calculator — United States inputs",
  "description": "Keep the cash trade-in allowance separate from the portion legally reducing the tax base. Dealer fee taxability is not assumed. USD planning view; stated limitations apply.",
  "type": "object",
  "properties": {
    "price": {
      "title": "Vehicle purchase price",
      "type": "number",
      "description": "Illustrative starting value; replace with your own evidence.",
      "default": 30000,
      "minimum": 0,
      "maximum": 1000000000000,
      "x-step": 0.01,
      "x-prefix": "USD",
      "x-unit": "currency"
    },
    "trade": {
      "title": "Eligible trade-in value",
      "type": "number",
      "description": "Illustrative starting value; replace with your own evidence.",
      "default": 0,
      "minimum": 0,
      "maximum": 1000000000000,
      "x-step": 0.01,
      "x-prefix": "USD",
      "x-unit": "currency"
    },
    "tradeCredit": {
      "title": "Verified share of trade-in deductible from tax base",
      "type": "number",
      "description": "Illustrative starting value; replace with your own evidence.",
      "default": 0,
      "minimum": 0,
      "maximum": 100,
      "x-step": 0.1,
      "x-unit": "percent"
    },
    "taxRate": {
      "title": "Verified purchase tax rate",
      "type": "number",
      "description": "Illustrative starting value; replace with your own evidence.",
      "default": 0,
      "minimum": 0,
      "maximum": 100,
      "x-step": 0.1,
      "x-unit": "percent"
    },
    "title": {
      "title": "Title/transfer fee",
      "type": "number",
      "description": "Illustrative starting value; replace with your own evidence.",
      "default": 0,
      "minimum": 0,
      "maximum": 1000000000000,
      "x-step": 0.01,
      "x-prefix": "USD",
      "x-unit": "currency"
    },
    "registration": {
      "title": "Registration fee",
      "type": "number",
      "description": "Illustrative starting value; replace with your own evidence.",
      "default": 0,
      "minimum": 0,
      "maximum": 1000000000000,
      "x-step": 0.01,
      "x-prefix": "USD",
      "x-unit": "currency"
    },
    "other": {
      "title": "Other non-taxable fees",
      "type": "number",
      "description": "Illustrative starting value; replace with your own evidence.",
      "default": 0,
      "minimum": 0,
      "maximum": 1000000000000,
      "x-step": 0.01,
      "x-prefix": "USD",
      "x-unit": "currency"
    },
    "rulesConfirmed": {
      "title": "Purchase location, tax base and all fees verified",
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "price",
    "trade",
    "tradeCredit",
    "taxRate",
    "title",
    "registration",
    "other"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "20.16.0",
    "calculatorUrl": "https://askcalculators.com/us/vehicle-tax/",
    "queryExample": "https://askcalculators.com/us/vehicle-tax/?price=30000&trade=0&tradeCredit=0&taxRate=0&title=0&registration=0&other=0&rulesConfirmed=0",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "Taxable price = max(0, price − trade × eligible fraction). Cash = price − trade + tax + fees.",
      "note": "Inputs are converted to canonical units before evaluating this stated formula."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/v20-us-vehicle-tax.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "20.16.0",
      "referenceCoverage": "references-listed",
      "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
      "historicalMetadataDate": "",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "taxable": {
        "title": "Modeled taxable vehicle price",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD",
        "x-digits": 2
      },
      "tax": {
        "title": "Purchase tax",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD",
        "x-digits": 2
      },
      "cash": {
        "title": "Cash after trade-in, tax and entered fees",
        "type": "number",
        "x-format": "currency",
        "x-currency": "USD",
        "x-digits": 2,
        "x-primary": true
      }
    }
  }
}
