{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.va_to_kva/1.3.1/input.json",
  "title": "VA to kVA — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "description": "Apparent power in VA (factor=0.001) or kVA (factor=1000)"
    },
    "factor": {
      "type": "number",
      "description": "0.001 for VA→kVA; 1000 for kVA→VA"
    }
  },
  "required": [
    "a"
  ],
  "description": "Scale volt-amperes to kilovolt-amperes (÷1000) or reverse (×1000). (calculation_version 1.3.1)"
}
