{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.algebra.linear_equation/1.0.0/input.json",
  "title": "Linear equation — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "description": "Coefficient of x"
    },
    "b": {
      "type": "number",
      "description": "Constant term (default 0)"
    },
    "rhs": {
      "type": "number",
      "description": "Right-hand side. REST alias: c"
    }
  },
  "required": [
    "a",
    "rhs"
  ],
  "description": "Solve ax + b = rhs for x. a = 0 is identity or inconsistent. Not the quadratic formula. (calculation_version 1.0.0)"
}
