Compare System and Savings

Description: Allows users to compare different systems, products, or services along with potential cost savings.

API Response Structure:

{
  "comparison": {
    "title": "Solar Panel Systems Comparison",
    "systems": [
      {
        "name": "System A",
        "initialCost": "$10,000",
        "features": [
          "5kW capacity",
          "25-year warranty"
        ],
        "annualSavings": "$1,200",
        "paybackPeriod": "8.3 years",
        "hasImage": true
      },
      {
        "name": "System B",
        "initialCost": "$15,000",
        "features": [
          "7.5kW capacity",
          "30-year warranty"
        ],
        "annualSavings": "$1,800",
        "paybackPeriod": "8.5 years",
        "hasImage": true
      }
    ]
  },
  "analysis": {
    "recommendedOption": "System A",
    "reasonings": [
      "Better cost-benefit ratio",
      "Shorter payback period"
    ]
  },
  "type": "instantAnswers",
  "configType": "compareSystemAndSavings"
}

Fields:

  • comparison (object): Comparison information

    • title (string): Comparison title

    • systems (array): Systems being compared

      • name (string): System name

      • initialCost (string): Initial investment

      • features (array): System features

      • annualSavings (string): Yearly savings

      • paybackPeriod (string): ROI timeline

      • hasImage (boolean): If system has image

  • analysis (object): Comparison analysis

  • type (string): Always "instantAnswers"

  • configType (string): Always "compareSystemAndSavings"