{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.kinematics.projectile/1.0.0/input.json",
  "title": "Projectile Motion — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "full",
        "range"
      ]
    },
    "v0_m_s": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "angle_deg": {
      "type": "number"
    },
    "g_m_s2": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "required": [
    "v0_m_s",
    "angle_deg"
  ],
  "description": "Flat-ground projectile range, apex, and flight time (no drag). (calculation_version 1.0.0)"
}
