{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.log.input.json",
  "title": "Logarithm — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "x": {
      "type": "number",
      "description": "Argument x > 0. Share-URL alias: xInput"
    },
    "xInput": {
      "type": "number",
      "description": "Share-URL alias for x"
    },
    "y": {
      "type": "number",
      "description": "Logarithm value when solving for x or b"
    },
    "yInput": {
      "type": "number",
      "description": "Share-URL alias for y"
    },
    "b": {
      "type": "number",
      "description": "Base b > 0, b ≠ 1. Alias: base"
    },
    "base": {
      "description": "Base 10 | e | 2 | custom positive ≠ 1"
    },
    "baseInput": {
      "description": "Share-URL alias for base"
    },
    "solve_for": {
      "type": "string",
      "enum": [
        "y",
        "x",
        "b"
      ],
      "description": "Unknown to solve (default y / inferred)"
    }
  },
  "description": "Common, natural, and arbitrary-base real logarithms; solve for y, x, or b with change-of-base. (calculation_version 1.1.5) Provide at least 1 of: x, xInput, y, yInput."
}
