{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/personal-loan-calculator/schema.json",
  "title": "Personal Loan Calculator inputs",
  "description": "Calculate monthly payments and total interest for a personal loan, including origination fees.",
  "type": "object",
  "properties": {
    "amount": {
      "title": "Loan Amount",
      "type": "number",
      "default": 15000
    },
    "rate": {
      "title": "Interest Rate",
      "type": "number",
      "default": 10.5
    },
    "term": {
      "title": "Loan Term (Years)",
      "type": "number",
      "default": 3
    },
    "originationFee": {
      "title": "Origination Fee",
      "type": "number",
      "default": 0
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/personal-loan-calculator/",
    "queryExample": "https://askcalculators.com/calculator/personal-loan-calculator/?amount=15000&rate=10.5&term=3&originationFee=0",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "Payment uses the installment-loan formula; fee-adjusted APR is the discount rate that equates net loan proceeds with scheduled payments."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/personal-loan-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
      }
    }
  }
}
