{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.kinematics.velocity/1.0.0/input.json",
  "title": "Velocity Calculator — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "v",
        "s",
        "t"
      ]
    },
    "s_m": {
      "type": "number"
    },
    "t_s": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "v_m_s": {
      "type": "number"
    }
  },
  "required": [
    "mode"
  ],
  "description": "Average velocity v = s/t (solve v, s, or t). (calculation_version 1.0.0)"
}
