{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.percent_error.input.json",
  "title": "Percent error — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "experimental": {
      "type": "number"
    },
    "theoretical": {
      "type": "number"
    },
    "observed": {
      "type": "number"
    },
    "true": {
      "type": "number"
    },
    "percent": {
      "type": "number"
    },
    "abs": {
      "description": "1/true for absolute percent error; 0 for signed"
    },
    "solve_for": {
      "type": "string",
      "enum": [
        "p",
        "o",
        "t"
      ]
    }
  },
  "description": "Laboratory percent error |O − T|/|T|×100% (signed opt-in) with reverse solve for O or T. (calculation_version 1.1.4) Provide at least 1 of: experimental, theoretical, observed, true, percent."
}
