{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.kva_to_kw/1.4.1/input.json",
  "title": "kVA to kW — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "description": "kVA for kVA→kW; kW for kW→kVA"
    },
    "b": {
      "type": "number",
      "exclusiveMinimum": 0,
      "maximum": 1,
      "description": "Power factor PF. Engine field name is b (not power_factor)."
    }
  },
  "required": [
    "a",
    "b"
  ],
  "description": "Convert apparent power to real power using power factor: kW = kVA × PF. (calculation_version 1.4.1)"
}
