Given the following sample JSON Schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "removals": { "type": "array", "items": { "type": "string", "minLength": 2, "maxLength": 50 }, "description": "Tags removed from the patient. **CAUTION**: This may remove tags you did not create." } }, "additionalProperties": false }
You only get this in the UI:
which doesn't show the length restrictions.