{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.quadratic.input.json",
  "title": "Quadratic formula — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "description": "Quadratic coefficient a ≠ 0"
    },
    "b": {
      "type": "number",
      "description": "Linear coefficient"
    },
    "c": {
      "type": "number",
      "description": "Constant term"
    }
  },
  "required": [
    "a",
    "b",
    "c"
  ],
  "description": "Solve ax² + bx + c = 0 with the quadratic formula; real or complex roots from discriminant Δ. (calculation_version 1.0.4)"
}
