{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.kinematics.free_fall/1.0.0/input.json",
  "title": "Free Fall Calculator — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "v",
        "s",
        "t"
      ]
    },
    "t_s": {
      "type": "number"
    },
    "s_m": {
      "type": "number"
    },
    "u_m_s": {
      "type": "number"
    },
    "g_m_s2": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "required": [
    "mode"
  ],
  "description": "Free fall under constant g (optional initial velocity). (calculation_version 1.0.0)"
}
