Skip to content

Commit

Permalink
min validation length on field is removed
Browse files Browse the repository at this point in the history
  • Loading branch information
saiprakash-eGov committed Dec 3, 2024
1 parent 79f8bd3 commit fcf4825
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Field {

@JsonProperty("value")
@NotNull
@Size(min = 1, max = 10000)
@Size(max = 10000)
private String value = null;


Expand Down

0 comments on commit fcf4825

Please sign in to comment.