Skip to content

Commit

Permalink
[GENERATE] Java classes from JSON Schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dapla-bot[bot] committed Jan 18, 2024
1 parent ce7b623 commit 27eb60c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class TeamInfoMetadataSchema implements Serializable
*/
@JsonProperty("team_name")
@JsonPropertyDescription("The (uniform) name of this team")
@Size(min = 1, max = 16)
@Size(min = 1, max = 17)
private String teamName;
/**
* Name of this resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class KubenTeamDefinition implements Serializable
*/
@JsonProperty("uniform_name")
@Pattern(regexp = "^[a-z-]*$")
@Size(max = 16)
@Size(max = 17)
@NotNull
private String uniformName;
/**
Expand Down

0 comments on commit 27eb60c

Please sign in to comment.