{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/present-value-of-cash-flows-calculator/schema.json",
  "title": "Present Value of Cash Flows Calculator inputs",
  "description": "Discount periodic cash flows to period zero and show each present-value contribution.",
  "type": "object",
  "properties": {
    "cashFlows": {
      "title": "Cash flows by period",
      "type": "string",
      "default": "-1000, 200, 300, 400, 500"
    },
    "discountRate": {
      "title": "Discount rate per period",
      "type": "number",
      "default": 5,
      "minimum": -99.99,
      "maximum": 1000,
      "x-step": 0.01,
      "x-unit": "percent"
    }
  },
  "required": [
    "cashFlows",
    "discountRate"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "1.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/present-value-of-cash-flows-calculator/",
    "queryExample": "https://askcalculators.com/calculator/present-value-of-cash-flows-calculator/?cashFlows=-1000%2C+200%2C+300%2C+400%2C+500&discountRate=5",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "PV = Σ CFₜ ÷ (1+i)^t"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/present-value-of-cash-flows-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": {
      "presentValue": {
        "title": "Present value of all cash flows",
        "type": "number",
        "x-format": "currency",
        "x-primary": true
      },
      "presentValuePositiveFlows": {
        "title": "PV of positive flows",
        "type": "number",
        "x-format": "currency"
      },
      "presentValueNegativeFlows": {
        "title": "PV of negative flows",
        "type": "number",
        "x-format": "currency"
      },
      "undiscountedTotal": {
        "title": "Undiscounted total",
        "type": "number",
        "x-format": "currency"
      },
      "cashFlowCount": {
        "title": "Cash flows",
        "type": "number",
        "x-format": "integer"
      }
    }
  }
}
