elements icon indicating copy to clipboard operation
elements copied to clipboard

Missing Min/Max Character Lengths on Strings When Element is an Array

Open kentbulza opened this issue 5 months ago • 0 comments

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:

Image

which doesn't show the length restrictions.

kentbulza avatar Jul 28 '25 23:07 kentbulza