{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/electricity-calculator/schema.json",
  "title": "Electricity Cost inputs",
  "description": "Estimate the electricity cost of running appliances based on their wattage and usage time.",
  "type": "object",
  "properties": {
    "watts": {
      "title": "Power Consumption (Watts)",
      "type": "number",
      "default": 100
    },
    "hours": {
      "title": "Hours Used Per Day",
      "type": "number",
      "default": 5
    },
    "rate": {
      "title": "Cost per kWh ($)",
      "type": "number",
      "default": 0.15
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/electricity-calculator/",
    "queryExample": "https://askcalculators.com/calculator/electricity-calculator/?watts=100&hours=5&rate=0.15",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "Energy in kWh = power in kW × hours; cost = energy × price per kWh."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/electricity-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
      }
    }
  }
}
