{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/amortization-schedule-equal-principal-payments-calculator/schema.json",
  "title": "Amortization Schedule Calculator: Equal Principal Payments inputs",
  "description": "Create a loan schedule with the same principal amount paid every period and declining total payments.",
  "type": "object",
  "properties": {
    "principal": {
      "title": "Loan principal",
      "type": "number",
      "default": 100000,
      "minimum": 0.01,
      "x-step": 100,
      "multipleOf": 100,
      "x-unit": "currency"
    },
    "annualRate": {
      "title": "Annual interest rate",
      "type": "number",
      "default": 6,
      "minimum": 0,
      "maximum": 100,
      "x-step": 0.01,
      "x-unit": "percent"
    },
    "paymentsPerYear": {
      "title": "Payments per year",
      "type": "number",
      "default": 12,
      "minimum": 1,
      "maximum": 365,
      "x-step": 1,
      "multipleOf": 1
    },
    "years": {
      "title": "Loan term in years",
      "type": "number",
      "default": 5,
      "minimum": 0.01,
      "maximum": 100,
      "x-step": 0.25
    }
  },
  "required": [
    "principal",
    "annualRate",
    "paymentsPerYear",
    "years"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "1.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/amortization-schedule-equal-principal-payments-calculator/",
    "queryExample": "https://askcalculators.com/calculator/amortization-schedule-equal-principal-payments-calculator/?principal=100000&annualRate=6&paymentsPerYear=12&years=5",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "principal payment = original principal ÷ number of payments; interest = opening balance × periodic rate"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/amortization-schedule-equal-principal-payments-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "1.0.0",
      "referenceCoverage": "references-pending",
      "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": {
      "firstPayment": {
        "title": "First payment",
        "type": "number",
        "x-format": "currency",
        "x-primary": true
      },
      "lastPayment": {
        "title": "Last payment",
        "type": "number",
        "x-format": "currency"
      },
      "principalPerPayment": {
        "title": "Principal per payment",
        "type": "number",
        "x-format": "currency"
      },
      "totalInterest": {
        "title": "Total interest",
        "type": "number",
        "x-format": "currency"
      },
      "totalPaid": {
        "title": "Total paid",
        "type": "number",
        "x-format": "currency"
      },
      "paymentCount": {
        "title": "Number of payments",
        "type": "number",
        "x-format": "integer"
      }
    }
  }
}
