{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/bond-calculator/schema.json",
  "title": "Bond Calculator inputs",
  "description": "Calculate the theoretical price and current yield of a bond based on its coupon rate and yield to maturity.",
  "type": "object",
  "properties": {
    "faceValue": {
      "title": "Face Value (Par)",
      "type": "number",
      "default": 1000
    },
    "couponRate": {
      "title": "Annual Coupon Rate",
      "type": "number",
      "default": 5
    },
    "yearsToMaturity": {
      "title": "Years to Maturity",
      "type": "number",
      "default": 10
    },
    "ytm": {
      "title": "Yield to Maturity (Market Rate)",
      "type": "number",
      "default": 4
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/bond-calculator/",
    "queryExample": "https://askcalculators.com/calculator/bond-calculator/?faceValue=1000&couponRate=5&yearsToMaturity=10&ytm=4",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "Coupon payment = face value × coupon rate ÷ payments per year; price is the present value of coupons plus the present value of face value at maturity."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/bond-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
      }
    }
  }
}
