{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.sum.input.json",
  "title": "Sum / addition — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "values": {
      "description": "Array of numbers to add"
    },
    "sumInput": {
      "type": "string",
      "description": "Share-URL / text list of values"
    },
    "input": {
      "type": "string",
      "description": "Alias for sumInput"
    },
    "mode": {
      "type": "string",
      "enum": [
        "sum",
        "long"
      ],
      "description": "sum (default) or long column work"
    }
  },
  "description": "Exact decimal sum of a list of values (comma/space/newline separated), with optional long-addition work. (calculation_version 1.0.2) Provide at least 1 of: values, sumInput, input."
}
