{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.acoustics.sound_level/1.0.0/input.json",
  "title": "Sound Level Calculator — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "L_I",
        "I",
        "L_p",
        "p",
        "combine"
      ]
    },
    "I_W_m2": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "p_Pa": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "L_dB": {
      "type": "number"
    },
    "levels_dB": {
      "type": "array",
      "items": {
        "type": "number"
      }
    }
  },
  "required": [
    "mode"
  ],
  "description": "Intensity and pressure sound levels in dB; incoherent level combination. (calculation_version 1.0.0)"
}
