{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.kwh_to_watts/1.2.1/input.json",
  "title": "kWh to Watts — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "minimum": 0,
      "description": "Energy in kWh (kWh→W) or power in W (W→kWh)"
    },
    "b": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Time in hours"
    },
    "factor": {
      "type": "number",
      "description": "1000 for kWh→W; 0.001 for W→kWh"
    }
  },
  "required": [
    "a",
    "b"
  ],
  "description": "Convert energy in kWh and a time period into average power in watts: W = 1000 × kWh ÷ h. Reverse: kWh = W × h ÷ 1000. (calculation_version 1.2.1)"
}
