{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/units.speed.mps_kmh.input.json",
  "title": "m/s ↔ km/h — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "mps-kmh",
        "kmh-mps"
      ]
    },
    "value": {
      "type": "number",
      "minimum": 0
    }
  },
  "required": [
    "value"
  ],
  "description": "Speed conversion with factor 3.6. (calculation_version 1.0.0)"
}
