{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/units.energy.kwh_joule.input.json",
  "title": "kWh ↔ Joule — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "kwh-j",
        "j-kwh"
      ]
    },
    "value": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "required": [
    "value"
  ],
  "description": "Energy conversion with 1 kWh = 3.6 MJ. (calculation_version 1.0.0)"
}
