{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.divide/1.0.5/input.json",
  "title": "Division — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "description": "Dividend. Aliases: dividend, dividendInput"
    },
    "b": {
      "type": "number",
      "description": "Divisor. Aliases: divisor, divisorInput"
    },
    "mode": {
      "type": "string",
      "enum": [
        "quotient",
        "long"
      ]
    },
    "decimals": {
      "type": "integer",
      "description": "Decimal places for formatted quotient"
    },
    "dividend": {
      "type": "number"
    },
    "divisor": {
      "type": "number"
    },
    "dividendInput": {
      "type": "number"
    },
    "divisorInput": {
      "type": "number"
    }
  },
  "description": "Quotient a ÷ b with optional decimal places, plus long-division work for integers. (calculation_version 1.0.5) Provide at least 1 of: a, b, dividend, divisor, dividendInput, divisorInput."
}
