{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.rf.gamma_z/1.0.0/input.json",
  "title": "Γ ↔ Z (Complex) — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "z-gamma",
        "gamma-z",
        "polar-z"
      ]
    },
    "z_r": {
      "type": "number"
    },
    "z_i": {
      "type": "number"
    },
    "gamma_r": {
      "type": "number"
    },
    "gamma_i": {
      "type": "number"
    },
    "gamma_mag": {
      "type": "number",
      "minimum": 0
    },
    "gamma_angle_deg": {
      "type": "number"
    }
  },
  "required": [
    "mode"
  ],
  "description": "Complex reflection coefficient ↔ normalized impedance with VSWR/RL. (calculation_version 1.0.0)"
}
