{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/units.temperature.celsius_kelvin/1.0.0/input.json",
  "title": "Celsius ↔ Kelvin — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "c-k",
        "k-c"
      ]
    },
    "value": {
      "type": "number"
    }
  },
  "required": [
    "value"
  ],
  "description": "Affine °C↔K with absolute-zero guards. (calculation_version 1.0.0)"
}
