{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.polynomial.roots/1.0.0/input.json",
  "title": "Polynomial roots — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "coeffs": {
      "type": "string",
      "description": "c0,c1,…,cn constant first"
    },
    "method": {
      "type": "string",
      "enum": [
        "all_roots",
        "durand_kerner"
      ]
    }
  },
  "description": "All roots of a real polynomial of degree 1–8. Closed form for linear and quadratic; Durand–Kerner otherwise. Not the quadratic formula page, not a single Newton root, not CAS. (calculation_version 1.0.0)"
}
