{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.thermo.specific_heat/1.0.0/input.json",
  "title": "Specific Heat Capacity — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "Q",
        "m",
        "c",
        "dT"
      ]
    },
    "m_kg": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "c_J_kgK": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "dT_K": {
      "type": "number"
    },
    "Q_J": {
      "type": "number"
    }
  },
  "required": [
    "mode"
  ],
  "description": "Q = m c ΔT solve for Q, m, c, or ΔT. (calculation_version 1.0.0)"
}
