{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.dynamics.force/1.0.0/input.json",
  "title": "Force (F=ma) — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "F",
        "a",
        "m"
      ]
    },
    "m_kg": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "a_m_s2": {
      "type": "number"
    },
    "F_N": {
      "type": "number"
    }
  },
  "required": [
    "mode"
  ],
  "description": "Newton second law solve for F, a, or m. (calculation_version 1.0.0)"
}
