{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.geometry.solid.input.json",
  "title": "Solid geometry — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "sphere",
        "cylinder",
        "cone",
        "torus",
        "frustum"
      ]
    },
    "r": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "h": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "R": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "description": "Right circular sphere, cylinder, cone, ring torus, and conical frustum. Discovery /sphere, /cylinder, /cone, /frustum. Not the circle-only page, not a vector, not ISO 5167-5, not prism/pyramid, not CAS. (calculation_version 1.1.0) Provide at least 1 of: r, h, R."
}
