{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.scientific_notation/1.1.1/input.json",
  "title": "Scientific notation — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "dec-sci",
        "sci-dec",
        "convert",
        "engineering",
        "normalize",
        "operate"
      ]
    },
    "value": {
      "type": "number",
      "description": "Decimal value for dec-sci / convert"
    },
    "numInput": {
      "type": "number",
      "description": "Share-URL alias for value"
    },
    "coef": {
      "type": "number"
    },
    "exp": {
      "type": "integer"
    },
    "op": {
      "type": "string",
      "enum": [
        "mul",
        "div",
        "add",
        "sub"
      ]
    },
    "aInput": {
      "type": "number"
    }
  },
  "description": "Convert between decimal and scientific/engineering notation; normalize and operate on A×10ⁿ forms. (calculation_version 1.1.1) Provide at least 1 of: value, numInput, coef, aInput."
}
