{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.rectangular_shear.input.json",
  "title": "Rectangular shear — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "V": {
      "type": "number",
      "description": "Shear force. Alias shear."
    },
    "b": {
      "type": "number",
      "description": "Width."
    },
    "h": {
      "type": "number",
      "description": "Height."
    }
  },
  "required": [
    "V",
    "b",
    "h"
  ],
  "description": "Neutral-axis shear stress of one solid rectangle. The area moment comes from the rectangular-section engine. (calculation_version 1.0.0)"
}
