{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.opamp.error_budget.input.json",
  "title": "Op-amp error budget — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "noninv",
        "inv"
      ]
    },
    "combine": {
      "type": "string",
      "enum": [
        "rss",
        "worst_case"
      ]
    },
    "Vos_V": {
      "type": "number"
    },
    "Ib_A": {
      "type": "number"
    },
    "Ios_A": {
      "type": "number"
    },
    "Rf_ohm": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "Rg_ohm": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "required": [
    "Vos_V",
    "Rf_ohm",
    "Rg_ohm"
  ],
  "description": "DC Vos/Ib/Ios error budget with Rf/Rg (RSS or worst-case). (calculation_version 1.0.0)"
}
