{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/engineering.process.capability/1.0.0/input.json",
  "title": "Process Capability (Cp/Cpk) — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "lsl": {
      "type": "number",
      "description": "Lower specification limit"
    },
    "usl": {
      "type": "number",
      "description": "Upper specification limit (must be > lsl)"
    },
    "mu": {
      "type": "number",
      "description": "Process mean"
    },
    "sigma": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Process standard deviation"
    }
  },
  "required": [
    "lsl",
    "usl",
    "mu",
    "sigma"
  ],
  "description": "Design-stage Cp/Cpk from μ, σ, LSL, USL. Not in-control SPC and not Monte Carlo simulated indices. (calculation_version 1.0.0)"
}
