{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.vector.input.json",
  "title": "Vector — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "magnitude",
        "normalize",
        "add",
        "sub",
        "dot",
        "cross",
        "angle",
        "projection",
        "triple"
      ]
    },
    "ux": {
      "type": "number"
    },
    "uy": {
      "type": "number"
    },
    "uz": {
      "type": "number"
    },
    "vx": {
      "type": "number"
    },
    "vy": {
      "type": "number"
    },
    "vz": {
      "type": "number"
    },
    "wx": {
      "type": "number"
    },
    "wy": {
      "type": "number"
    },
    "wz": {
      "type": "number"
    }
  },
  "description": "R²/R³ magnitude, normalize, add/sub, dot, cross, angle, projection, and scalar triple product. Discovery /vector-magnitude, /dot-product, /cross-product. Not a matrix, not coordinate geometry, not CAS. (calculation_version 1.0.0) Provide at least 2 of: ux, uy, uz, vx, vy, vz, wx, wy, wz."
}
