{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.modulo.input.json",
  "title": "Euclidean remainder — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "integer",
      "description": "Dividend"
    },
    "modulus": {
      "type": "integer",
      "description": "Non-zero modulus. REST alias: m. Share URL uses modulus, not m."
    }
  },
  "required": [
    "a",
    "modulus"
  ],
  "description": "Integer remainder with a = q·m + r and 0 ≤ r < |m|. Not JavaScript truncated %. (calculation_version 1.0.0)"
}
