{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.kva_to_amps.input.json",
  "title": "kVA to amps — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "minimum": 0,
      "description": "kVA for kVA→Amps; amps for Amps→kVA"
    },
    "b": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Voltage (V); L-L when phase=three"
    },
    "phase": {
      "type": "string",
      "enum": [
        "single",
        "three"
      ],
      "description": "three = balanced line-to-line only"
    },
    "usePf": {
      "type": "boolean",
      "description": "Must be false for kVA↔A (PF not applied)"
    }
  },
  "required": [
    "a",
    "b"
  ],
  "description": "Convert apparent power in kVA to line current for single- or three-phase systems. (calculation_version 1.4.1)"
}
