**{{texts.parameters}}**
| {{texts.parameter}} | {{texts.parameter_location}} | {{texts.type}} | {{texts.default}} | Minimum | Maximum | {{texts.nullable}} | {{texts.description}} |
|---|---|---|---|---|---|---|---|
{%- for param in parameters %}
| `{{param.name}}`{%- if param.required %}
Required{%- endif %} | {{param.in}} | {{read_dict(param, "schema", "type")}} | {{read_dict(param, "schema", "default", default="")}} | {{read_dict(param, "schema", "minimum", default="")}} | {{read_dict(param, "schema", "maximum", default="")}} | {{texts.get_yes_no(read_dict(param, "schema", "nullable", default=False))}} | {{read_dict(param, "description", default="") | replace("\n", "
")}} |
{%- endfor %}