{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.energy_consumption.input.json",
  "title": "Energy consumption — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "W": {
      "type": "number",
      "minimum": 0,
      "description": "Average power (W). Must be ≥ 0."
    },
    "hours": {
      "type": "number",
      "minimum": 0,
      "description": "Duration (h). Must be ≥ 0."
    }
  },
  "required": [
    "W",
    "hours"
  ],
  "description": "Convert watts and hours to kilowatt-hours. (calculation_version 1.4.2)"
}
