{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.lcm.input.json",
  "title": "Least common multiple — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "values": {
      "type": "array",
      "minItems": 2,
      "items": {
        "oneOf": [
          {
            "type": "integer"
          },
          {
            "type": "string",
            "pattern": "^[+-]?\\d+$"
          }
        ]
      },
      "description": "Two or more integers. Values beyond IEEE-754 safe integers must be decimal strings."
    },
    "numbers": {
      "type": "array",
      "minItems": 2,
      "items": {
        "oneOf": [
          {
            "type": "integer"
          },
          {
            "type": "string",
            "pattern": "^[+-]?\\d+$"
          }
        ]
      },
      "description": "Alias for values"
    },
    "numsInput": {
      "type": "string",
      "description": "Share-URL / form field: comma- or space-separated integers"
    }
  },
  "description": "Exact LCM of two or more integers via BigInt pairwise GCF-identity fold, with listing and prime independent checks when values are small enough to list. (calculation_version 1.0.3) Provide at least 1 of: values, numbers, numsInput."
}
