{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.thermo.ideal_gas.input.json",
  "title": "Ideal Gas Law — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "P",
        "V",
        "n",
        "T"
      ]
    },
    "P_Pa": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "V_m3": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "n_mol": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "T_K": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "R": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "description": "PV=nRT solve for P|V|n|T in SI units. (calculation_version 1.0.0)"
}
