{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.wheatstone.input.json",
  "title": "Wheatstone bridge — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "Vin": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "R1": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "R2": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "R3": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "R4": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "required": [
    "Vin",
    "R1",
    "R2",
    "R3",
    "R4"
  ],
  "description": "Four-arm Wheatstone bridge Vout and balance from Vin and R1…R4. (calculation_version 1.0.0)"
}
