{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/interest-rate-calculator/schema.json",
  "title": "Interest Rate Calculator inputs",
  "description": "Calculate the required annual interest rate to earn a specific amount of interest.",
  "type": "object",
  "properties": {
    "principal": {
      "title": "Principal Amount ($)",
      "type": "number",
      "default": 10000
    },
    "totalInterest": {
      "title": "Total Interest Earned ($)",
      "type": "number",
      "default": 2000
    },
    "time": {
      "title": "Time Period (Years)",
      "type": "number",
      "default": 4
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/interest-rate-calculator/",
    "queryExample": "https://askcalculators.com/calculator/interest-rate-calculator/?principal=10000&totalInterest=2000&time=4",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "Simple annual interest rate = total interest ÷ (principal × years) × 100."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/interest-rate-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
      }
    }
  }
}
