{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.rf.wavelength.input.json",
  "title": "Wavelength — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "lambda",
        "freq"
      ]
    },
    "f_Hz": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "lambda_m": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "VF": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "er": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "description": "λ = c·VF/f in vacuum or dielectric (VF or εr). (calculation_version 1.0.0)"
}
