{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/engineering.conformity.mpe/1.0.0/input.json",
  "title": "Maximum permissible error MPE — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "ylab": {
      "type": "number",
      "description": "Measured quantity value. Aliases: y, x, measured."
    },
    "xref": {
      "type": "number",
      "description": "Reference quantity value. Aliases: X, ref, reference."
    },
    "MPE": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Maximum permissible measurement error (> 0). Alias: mpe. Not U, Ulab, or T."
    }
  },
  "required": [
    "ylab",
    "xref",
    "MPE"
  ],
  "description": "VIM MPE: pass iff |ylab−xref| ≤ MPE. ratio = |ε|/MPE. Equality is pass. Not an ILAC G8 spec decision on y, not En (no U), and not ε without a limit. (calculation_version 1.0.0)"
}
