**Jane version(s) affected**: 7.4.0 **Description** A string property with a `minLength > 0` adds a `NotBlank` constraints and ignores the `nullable: true` property in the schema. https://github.com/janephp/janephp/blob/cc3fef6e61d084b0befe6099f8a22940a58c9a1e/src/Component/JsonSchema/Guesser/Validator/String_/MinLengthValidator.php#L33-L34 **How to reproduce** ```yaml Shop: type: object properties name: type: string minLength: 1 nullable: true ``` **Possible Solution** `NotBlank` constraint got an option called `allowNull` , which could be used to mitigate this. **Additional context** -