{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.subtraction/1.0.1/input.json",
  "title": "Subtraction — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "minuend": {
      "type": "number"
    },
    "subtrahend": {
      "type": "number"
    },
    "difference": {
      "type": "number"
    },
    "minInput": {
      "type": "number",
      "description": "Share-URL alias for minuend"
    },
    "subInput": {
      "type": "number",
      "description": "Share-URL alias for subtrahend"
    },
    "diffInput": {
      "type": "number",
      "description": "Share-URL alias for difference"
    },
    "mode": {
      "type": "string",
      "enum": [
        "difference",
        "long"
      ]
    }
  },
  "description": "Difference a − b with solve-for any missing term, plus optional long subtraction. (calculation_version 1.0.1) Provide at least 1 of: minuend, subtrahend, difference, minInput, subInput, diffInput."
}
