{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.kw_to_va.input.json",
  "title": "kW to VA — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "description": "Real power in kW (kw→VA) or apparent power in VA (VA→kW)"
    },
    "b": {
      "type": "number",
      "exclusiveMinimum": 0,
      "maximum": 1,
      "description": "Power factor PF. Engine field name is b."
    }
  },
  "required": [
    "a",
    "b"
  ],
  "description": "Estimate apparent power in VA from real power and power factor. (calculation_version 1.3.1)"
}
