{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/engineering.tolerance.worst_case.agent.input.json",
  "title": "Worst-Case Tolerance Analysis — agent input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "tolerances": {
      "type": "array",
      "minItems": 1,
      "description": "Canonical non-negative tolerance magnitudes for Σ|t| worst-case and √Σt² RSS comparison.",
      "items": {
        "type": "number",
        "minimum": 0
      }
    },
    "unit": {
      "type": "string",
      "description": "Optional shared unit label (echoed in result)."
    }
  },
  "anyOf": [
    {
      "required": [
        "tolerances"
      ]
    }
  ],
  "description": "1-D linear worst-case tolerance magnitude stack Σ|tol| with RSS comparison (|cᵢ|=1). (calculation_version 1.3.0) Canonical agent fields only (no legacy aliases)."
}
